/* Bonuses Page Styles */

.hero {
    padding: 8rem 0 4rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(139, 0, 0, 0.2));
}

.hero-title {
    font-size: 3rem;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #FFD700;
    margin-bottom: 0.5rem;
}

.hero-description {
    font-size: 1.2rem;
    color: #50C878;
    font-weight: 600;
}

/* Welcome Bonus */
.welcome-bonus {
    padding: 4rem 0;
}

.bonus-hero {
    text-align: center;
}

.bonus-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 25px;
    overflow: hidden;
    border: 2px solid #FFD700;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.bonus-card.mega {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    animation: megaGlow 3s ease-in-out infinite alternate;
}

@keyframes megaGlow {
    from { box-shadow: 0 0 30px rgba(255, 215, 0, 0.5); }
    to { box-shadow: 0 0 50px rgba(255, 215, 0, 0.8); }
}

.bonus-header {
    background: linear-gradient(45deg, #8B0000, #B22222, #DC143C);
    padding: 2rem;
    text-align: center;
}

.bonus-header h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.bonus-amount {
    font-size: 1.5rem;
    color: #FFD700;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.bonus-content {
    padding: 2rem;
    text-align: center;
}

.bonus-code {
    display: inline-block;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 20px;
    font-weight: 800;
    font-size: 1.3rem;
    margin: 1rem 0;
    animation: glow 2s ease-in-out infinite alternate;
}

.bonus-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.bonus-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #ccc;
    font-size: 1.1rem;
}

.bonus-features i {
    color: #50C878;
    font-size: 1.2rem;
}

/* Ongoing Offers */
.ongoing-offers {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.2);
}

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

.offer-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    overflow: hidden;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.offer-icon {
    background: linear-gradient(45deg, #8B0000, #B22222);
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.offer-icon i {
    font-size: 3rem;
    color: #FFD700;
    animation: bounce 2s ease-in-out infinite;
}

.offer-card:nth-child(2) .offer-icon i { animation-delay: 0.5s; }
.offer-card:nth-child(3) .offer-icon i { animation-delay: 1s; }
.offer-card:nth-child(4) .offer-icon i { animation-delay: 1.5s; }

.offer-card h3 {
    color: #FFD700;
    margin-bottom: 1rem;
    padding: 0 1rem;
}

.offer-card p {
    color: #50C878;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding: 0 1rem;
}

.offer-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
}

.offer-details span {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.offer-card .btn {
    margin: 0 1rem 1.5rem;
}

/* VIP Club */
.vip-club {
    padding: 4rem 0;
}

.vip-content {
    max-width: 800px;
    margin: 0 auto;
}

.vip-card {
    background: linear-gradient(135deg, rgba(120, 81, 169, 0.2), rgba(147, 112, 219, 0.1));
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    border: 2px solid #7851A9;
    box-shadow: 0 0 30px rgba(120, 81, 169, 0.4);
}

.vip-header {
    margin-bottom: 2rem;
}

.vip-header i {
    font-size: 4rem;
    color: #FFD700;
    margin-bottom: 1rem;
    animation: crown 3s ease-in-out infinite;
}

@keyframes crown {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

.vip-header h3 {
    color: #7851A9;
    font-size: 2rem;
}

.vip-perks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.perk-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.perk-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.perk-item i {
    color: #FFD700;
    font-size: 1.5rem;
    min-width: 24px;
}

.perk-item span {
    color: #fff;
    font-weight: 500;
}

/* Holiday Specials */
.holiday-specials {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.specials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.special-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.special-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.special-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(45deg, #8B0000, #B22222, #DC143C);
    transition: all 0.3s ease;
}

.special-card:hover img {
    transform: scale(1.1);
}

.special-content {
    padding: 2rem;
    text-align: center;
}

.special-content h3 {
    color: #FFD700;
    margin-bottom: 1rem;
}

.special-content p {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Bonus Actions */
.bonus-actions {
    padding: 3rem 0;
    text-align: center;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero {
        padding: 6rem 0 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .methods-grid {
        grid-template-columns: 1fr;
    }
    
    .method-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .method-stats span {
        min-width: 150px;
    }
    
    .vip-perks {
        grid-template-columns: 1fr;
    }
    
    .specials-grid {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .bonus-card {
        margin: 0 1rem;
    }
    
    .bonus-header {
        padding: 1.5rem;
    }
    
    .bonus-header h3 {
        font-size: 1.5rem;
    }
    
    .bonus-amount {
        font-size: 1.2rem;
    }
    
    .vip-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .facts-grid {
        grid-template-columns: 1fr;
    }
}

@keyframes glow {
    from { box-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
    to { box-shadow: 0 0 20px rgba(255, 215, 0, 0.8); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}