/* Bonuses Page Specific Styles */

/* Bonuses Hero */
.bonuses-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bonuses-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 40% 60%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.bonuses-hero .container {
    position: relative;
    z-index: 2;
}

.bonuses-hero .hero-title {
    background: linear-gradient(135deg, #ffd700, #e91e63, #9c27b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

/* New Player Bonuses */
.new-player-bonuses {
    padding: 80px 0;
    background: linear-gradient(135deg, #16213e 0%, #0f0f23 100%);
}

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

.bonus-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.bonus-card.featured {
    border: 2px solid #ffd700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(233, 30, 99, 0.1));
}

.bonus-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ffd700, #e91e63);
    color: #1a1a2e;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.bonus-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.bonus-card h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.bonus-amount {
    font-size: 3rem;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.bonus-card p {
    color: #b0b0b0;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Daily Weekly Offers */
.daily-weekly {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
}

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

.offer-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(233, 30, 99, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
}

.offer-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e91e63, #ffd700, #4caf50);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.offer-card:hover::after {
    opacity: 1;
}

.offer-card:hover {
    transform: translateY(-10px);
    border-color: rgba(233, 30, 99, 0.5);
    box-shadow: 0 15px 30px rgba(233, 30, 99, 0.3);
}

.offer-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(135deg, #e91e63, #9c27b0, #3f51b5);
    font-size: 3rem;
    color: #e91e63;
    margin-bottom: 20px;
    display: block;
}

.offer-card h3 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.offer-card p {
    color: #b0b0b0;
    margin-bottom: 25px;
}

/* VIP Club */
.vip-club {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    text-align: center;
}

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

.vip-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(233, 30, 99, 0.1));
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-align: center;
}

.vip-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
}

.vip-card i {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 20px;
    display: block;
}

.vip-card h3 {
    color: #ffffff;
    margin-bottom: 15px;
}

.vip-card p {
    color: #b0b0b0;
}

.btn-vip {
    background: linear-gradient(135deg, #ffd700, #e91e63);
    color: #1a1a2e;
    font-size: 1.3rem;
    padding: 20px 40px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    animation: pulse 2s infinite;
}

.btn-vip:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.6);
}

/* Holiday Specials */
.holiday-specials {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
}

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

.holiday-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(76, 175, 80, 0.2);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
}

.holiday-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4caf50, #ffd700, #e91e63);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.holiday-card:hover::before {
    transform: translateX(0);
}

.holiday-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(76, 175, 80, 0.5);
    box-shadow: 0 20px 40px rgba(76, 175, 80, 0.3);
}

.holiday-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: linear-gradient(135deg, #4caf50, #ffd700);
}

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

.holiday-content h3 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.holiday-content p {
    color: #b0b0b0;
    margin-bottom: 20px;
}

/* Bonus Actions */
.bonus-actions {
    padding: 60px 0;
    background: linear-gradient(135deg, #16213e 0%, #0f0f23 100%);
    text-align: center;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.action-buttons .btn {
    padding: 18px 35px;
    font-size: 1.1rem;
}

/* Responsive Design for Bonuses */
@media (max-width: 768px) {
    .bonus-cards,
    .offers-grid,
    .vip-benefits,
    .holiday-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .bonus-amount {
        font-size: 2.5rem;
    }
    
    .btn-vip {
        font-size: 1.2rem;
        padding: 18px 35px;
    }
}

@media (max-width: 480px) {
    .bonus-card,
    .offer-card,
    .vip-card {
        padding: 25px;
    }
    
    .holiday-card img {
        height: 150px;
    }
    
    .bonus-amount {
        font-size: 2rem;
    }
    
    .btn-vip {
        font-size: 1.1rem;
        padding: 15px 30px;
    }
}