
/* FORCE RESET */
.site-grid, .bonus-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
}

/* CARD */
.site-card, .bonus-card {
    
    padding: 20px;
    text-align: center;
    position: relative;
    background:#081225;
    border:1.5px solid rgba(0,255,170,0.5);
    border-radius:22px;
    position:relative;
    overflow:hidden;
    transition:all .3s ease;
    box-shadow:
    0 0 12px rgba(0,255,170,.15);
    
}


/* IMAGE FIX (MAIN ISSUE) */
.site-logo {
    width: 100% !important;
    height: 120px !important;
    object-fit: contain !important;
}

/* BUTTON FIX */
.btns {
    display: flex;
    gap: 10px;
}

.btn {
    flex: 1;
}

/* MOBILE */
@media (max-width: 1024px){
    .site-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 600px){
    .site-grid {
        grid-template-columns: 1fr !important;
    }
}
/* 🚨 FORCE MOBILE 1 COLUMN FIX */
@media (max-width: 768px) {

    .site-grid,
    .bonus-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .site-card,
    .bonus-card {
        width: 100% !important;
        max-width: 100% !important;
        
    }

}




/* BONUS HERO SECTION */
.bonus-hero {
    margin: 25px 0 30px;
    padding: 25px;

    background: linear-gradient(145deg, #0f172a, #020617);
    border-radius: 18px;

    box-shadow: 0 0 25px rgba(0,255,200,0.1);
}

.bonus-hero h1 {
    font-size: 26px;
    color: #00ffd5;
    margin-bottom: 10px;
}

.bonus-hero p {
    color: #cbd5f5;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* STATS */
.hero-stats {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-stats span {
    background: #020617;
    border: 1px solid rgba(0,255,200,0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: #00ffd5;
}

@media(max-width:768px){

    .bonus-hero {
        padding: 18px;
    }

    .bonus-hero h1 {
        font-size: 18px;
    }

    .bonus-hero p {
        font-size: 13px;
    }

    .hero-stats {
        gap: 8px;
    }

}


.bonus-hero {
    margin: 25px 0;
    padding: 25px;
    background: linear-gradient(145deg, #0f172a, #020617);
    border-radius: 15px;
}

.hero-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 18px;
    background: linear-gradient(90deg,#00ffd5,#00ff99);
    border-radius: 20px;
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

