* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: #030b15;
    color: #fff;
    overflow-x: hidden;
}

/* Futuristic Grid Background */

.grid-bg {
    position: fixed;
    width: 100%;
    height: 100%;
    background: url("logo.jpg") center/cover repeat;
    opacity: 0.06;
    z-index: 0;
}

.wrapper {
    width: 90%;
    max-width: 450px;
    margin: auto;
    padding-top: 60px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.card {
    background: rgba(20, 20, 35, 0.55);
    border: 1px solid rgba(100, 120, 255, 0.4);
    backdrop-filter: blur(18px);
    padding: 45px 25px;
    border-radius: 25px;
    box-shadow: 0 0 50px rgba(80, 120, 255, 0.15);
    animation: drop 1s ease;
}

/* Title */

h1 {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(90deg, #7da6ff, #9f7dff, #67d7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}

/* Subscribers */

.subs {
    font-size: 0.9rem;
    margin-top: 6px;
    opacity: 0.9;
}

/* Information */

.info {
    margin: 22px 0;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #cfe0ff;
}

.info strong {
    color: #8fb3ff;
}

/* Timer Section */

.timer-box {
    margin-top: 20px;
}

.timer-box p {
    font-size: 0.9rem;
    color: #9bb3ff;
}

#timer {
    display: inline-block;
    margin-top: 8px;
    font-size: 2.2rem;
    font-weight: 800;
    color: #76baff;
    text-shadow: 0 0 18px #6aa7ff;
}

/* Button */

#joinBtn {
    margin-top: 30px;
    padding: 12px 38px;
    border-radius: 40px;
    border: none;
    cursor: pointer;
    background: linear-gradient(90deg, #6aa7ff, #9d73ff);
    color: #000;
    font-size: 1.8rem;
    font-weight: 700;
    transition: 0.4s ease;
    animation: pulse 1.5s infinite alternate;
}

#joinBtn:hover {
    transform: scale(1.07);
    box-shadow: 0 0 40px rgba(130, 160, 255, 0.7);
}

/* Animations */

@keyframes drop {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    from {
        opacity: 0.8;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Adjustments */

@media (max-width: 460px) {
    h1 {
        font-size: 1.55rem;
    }
    #joinBtn {
        font-size: 0.95rem;
        padding: 10px 30px;
    }
}