.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-top: 40px;
}
.f-box {
    background: var(--glass-bg);
    padding: 15px 5px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.f-box img {
    width: 30px;
    margin-bottom: 8px;
    filter: grayscale(1) invert(1);
}
.f-box p {
    font-size: 10px;
    font-weight: 600;
    color: #777;
    margin-bottom:0px !important;
}

:root {
    --neon: #00ffcc;
    --gold: #ffcc00;
    --bg-dark: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #020003 !important;
    font-family: 'Poppins', sans-serif;
    color: white;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    overflow-x: hidden;
}

/* Background Animation */
.bg-animate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, #1a0033 0%, #000 100%);
    z-index: -1;
}

.container {
    width: 100%;
    max-width: 450px;
    padding: 20px 0px;
    text-align: center;
}

/* Floating Status */
.live-status {
    background: rgba(0, 255, 204, 0.1);
    color: var(--neon);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    border: 1px solid var(--neon);
}

.ping {
    width: 8px;
    height: 8px;
    background: var(--neon);
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

/* Hero Titles */
.glitch-title {
    font-size: 70px;
    line-height: 1;
    background: linear-gradient(to bottom, #fff, #666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
}

.vip-text {
    font-size: 20px;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 5px;
    margin-bottom: 10px;
}

.profit-badge {
    background: #ff0055;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: 900;
    font-size: 14px;
    transform: rotate(-2deg);
}

/* The Main Action Card */
.main-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 30px 20px;
    margin-top: 30px;
    position: relative;
    backdrop-filter: blur(15px);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 25px;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 50px rgba(0, 255, 204, 0.1);
    z-index: -1;
}

.stats-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
}

.stat .val {
    display: block;
    font-size: 22px;
    font-weight: 900;
    color: var(--neon);
}

.stat .lbl {
    font-size: 10px;
    opacity: 0.6;
}

.promo-text {
    font-size: 15px;
    color: #ccc;
    margin-bottom: 30px;
}

/* THE MAGIC BUTTON */
.cta-button {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    gap: 5px;
    padding: 12px 12px;
    border-radius: 16px;
    color: white;
    font-size: 14px;
    font-weight: 900;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4);
    animation: shake 3s infinite;
}

.cta-button:hover {
    color: #ffffff;
}

.cta-button img {
    width: 30px;
}

.shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: moveShine 2s infinite;
}

@keyframes moveShine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes shake {

    0%,
    90%,
    100% {
        transform: scale(1);
    }

    95% {
        transform: scale(1.05);
    }
}

.timer {
    margin-top: 15px;
margin-bottom: 0px !important;
    font-size: 12px;
    color: #666;
}

#clock {
    color: #ff4d4d;
    font-weight: bold;
}

/* Trust Icons */
.trust-icons {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.t-icon {
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 12px;
    color: #888;
}