/* --- GLOBAL RESET & BODY STYLE --- */
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(36, 0, 70, 0.8)), url('./image/dollar.jpg') no-repeat center top;
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
}

/* --- LOGO --- */
.logo-img {
    text-align: center;
    margin-top: 2rem;
}

.logo-img img {
    width: 7rem;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 10px #00ffe0);
}

/* --- CONTENT --- */
.content {
    text-align: center;
    margin-top: 5%;
}

.content .title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 0px 0px 8px rgba(0, 255, 255, 0.6);
}

/* --- MAIN HEADING WITH GLOW --- */
.content #wallTitle {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    background: linear-gradient(to right, #00f0ff, #ff00c8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: glowText 3s ease-in-out infinite;
}

/* --- BUTTON STYLE --- */
.content .actionBtn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #ff005a, #ff7b00);
    padding: 1rem 2.5rem;
    margin-top: 2.5rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 15px rgba(255, 0, 90, 0.6);
}

.content .actionBtn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255, 0, 90, 0.9);
}

/* --- CARD SECTION --- */
.card-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 5% 10%;
}

.card-sec {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #ffffff30;
    padding: 2rem;
    width: 260px;
    border-radius: 20px;
    box-shadow: 0 0 12px rgba(0, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.card-sec:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

.card-sec img {
    width: 60px;
    margin-bottom: 15px;
}

.card-sec i {
    font-size: 35px;
    color: #00f0ff;
    margin-bottom: 10px;
}

.temp-title {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin: 10px 0;
}

.card-sec p {
    font-size: 15px;
    color: #ccc;
}

/* --- FOOTER --- */
.footer {
    margin: 3rem 0;
    text-align: center;
    color: #ccc;
    font-size: 14px;
    border-top: 1px solid #ffffff20;
    padding-top: 1.5rem;
}

/* --- ANIMATIONS --- */
@keyframes glowText {
    0% {
        text-shadow: 0 0 10px #00f0ff, 0 0 20px #ff00c8;
    }
    50% {
        text-shadow: 0 0 20px #00f0ff, 0 0 40px #ff00c8;
    }
    100% {
        text-shadow: 0 0 10px #00f0ff, 0 0 20px #ff00c8;
    }
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .card-section {
        flex-direction: column;
        padding: 10%;
    }

    .content .title {
        font-size: 2rem;
    }

    .content #wallTitle {
        font-size: 1.8rem;
    }

    .card-sec {
        width: 100%;
    }
}
