/* Bonuses Page Specific Styles */
body {
    padding-top: 100px;
}

/* Bonuses Hero */
.bonuses-hero {
    padding: 60px 0;
    text-align: center;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
}

.bonuses-hero h1 {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffd700, #ff6b6b);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bonuses-hero h2 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #6c5ce7;
}

/* Welcome Bonus */
.welcome-bonus {
    padding: 60px 0;
}

.bonus-cards {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.bonus-card {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

.bonus-card.featured {
    border-color: rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(0, 0, 0, 0.7));
}

.bonus-card:hover {
    transform: translateY(-10px);
    border-color: #ffd700;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.4);
}

.bonus-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.bonus-content {
    padding: 25px;
    text-align: center;
}

.bonus-badge {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
    animation: pulse 2s ease-in-out infinite;
}

.bonus-content h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffd700;
}

.bonus-content p {
    color: #cccccc;
    margin-bottom: 15px;
    font-weight: 600;
}

.bonus-value {
    font-size: 1.8rem;
    font-weight: 900;
    color: #00ff88;
    margin-bottom: 25px;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.claim-btn {
    background: linear-gradient(45deg, #ffd700, #ffb700);
    color: #000;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    width: 100%;
}

.claim-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    background: linear-gradient(45deg, #ffed4e, #ffa500);
}

/* Ongoing Promotions */
.ongoing-promos {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(26, 26, 46, 0.5));
}

.promos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.promo-card {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(108, 92, 231, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

.promo-card:hover {
    transform: translateY(-10px);
    border-color: #6c5ce7;
    box-shadow: 0 20px 40px rgba(108, 92, 231, 0.3);
}

.promo-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.promo-content {
    padding: 25px;
    text-align: center;
}

.promo-content i {
    font-size: 2.5rem;
    color: #6c5ce7;
    margin-bottom: 15px;
    animation: float 3s ease-in-out infinite;
}

.promo-content h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffd700;
}

.promo-content p {
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.promo-btn {
    background: linear-gradient(45deg, #6c5ce7, #a855f7);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
}

.promo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 92, 231, 0.4);
}

/* VIP Club */
.vip-club {
    padding: 60px 0;
}

.vip-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.vip-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(0, 0, 0, 0.7));
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

.vip-card:hover {
    transform: translateY(-10px);
    border-color: #ffd700;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.4);
}

.vip-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.vip-content {
    padding: 25px;
    text-align: center;
}

.vip-content i {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 15px;
    animation: float 3s ease-in-out infinite;
}

.vip-content h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffd700;
}

.vip-content p {
    color: #cccccc;
    line-height: 1.6;
}

/* Holiday Specials */
.holiday-specials {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05), rgba(0, 0, 0, 0.2));
}

.holiday-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.holiday-card {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 107, 107, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

.holiday-card:hover {
    transform: translateY(-10px);
    border-color: #ff6b6b;
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.3);
}

.holiday-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.holiday-content {
    padding: 25px;
    text-align: center;
}

.holiday-content i {
    font-size: 2.5rem;
    color: #ff6b6b;
    margin-bottom: 15px;
    animation: float 3s ease-in-out infinite;
}

.holiday-content h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffd700;
}

.holiday-content p {
    color: #cccccc;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    text-align: center;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

/* Responsive Design for Bonuses */
@media (max-width: 1024px) {
    .bonuses-hero h1 {
        font-size: 2.2rem;
    }
    
    .bonuses-hero h2 {
        font-size: 1.3rem;
    }
    
    .bonus-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .bonus-card {
        margin-bottom: 20px;
    }
    
    .bonus-content {
        padding: 20px;
    }
    
    .promos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .promo-card {
        margin-bottom: 20px;
    }
    
    .promo-content {
        padding: 20px;
    }
    
    .vip-benefits {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .vip-card {
        margin-bottom: 20px;
    }
    
    .vip-content {
        padding: 20px;
    }
    
    .holiday-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .holiday-card {
        margin-bottom: 20px;
    }
    
    .holiday-content {
        padding: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .bonuses-hero h1 {
        font-size: 1.8rem;
    }
    
    .bonuses-hero h2 {
        font-size: 1.1rem;
    }
    
    .bonus-cards {
        grid-template-columns: 1fr;
    }
    
    .bonus-card img {
        height: 150px;
    }
    
    .bonus-content {
        padding: 15px;
    }
    
    .bonus-value {
        font-size: 1.5rem;
    }
    
    .promos-grid {
        grid-template-columns: 1fr;
    }
    
    .promo-card img {
        height: 120px;
    }
    
    .promo-content {
        padding: 15px;
    }
    
    .promo-content i {
        font-size: 2rem;
    }
    
    .vip-benefits {
        grid-template-columns: 1fr;
    }
    
    .vip-card img {
        height: 120px;
    }
    
    .vip-content {
        padding: 15px;
    }
    
    .holiday-grid {
        grid-template-columns: 1fr;
    }
    
    .holiday-card img {
        height: 120px;
    }
    
    .holiday-content {
        padding: 15px;
    }
}