/* Bonuses Page Specific Styles */

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

.bonuses-hero h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffd700;
    animation: fadeInUp 0.8s ease-out;
}

.bonuses-hero p {
    font-size: 18px;
    color: #cccccc;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.welcome-bonus {
    padding: 80px 0;
}

.bonus-card {
    background: rgba(26, 26, 46, 0.9);
    border-radius: 25px;
    padding: 40px;
    border: 2px solid rgba(255, 20, 147, 0.3);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
    max-width: 800px;
    margin: 0 auto;
}

.bonus-card.mega {
    border: 3px solid #ffd700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 20, 147, 0.1) 100%);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    transition: left 0.8s ease;
}

.bonus-card:hover::before {
    left: 100%;
}

.bonus-header {
    text-align: center;
    margin-bottom: 30px;
}

.bonus-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 15px;
    animation: neon 2s infinite alternate;
}

.bonus-amount {
    font-size: 48px;
    font-weight: 900;
    color: #ff1493;
    background: linear-gradient(135deg, #ff1493 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 2s infinite;
}

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

.bonus-feature {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 20, 147, 0.2);
    transition: all 0.3s ease;
}

.bonus-feature:hover {
    transform: translateY(-3px);
    border-color: #ff1493;
    box-shadow: 0 10px 20px rgba(255, 20, 147, 0.2);
}

.bonus-feature img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff1493 0%, #ffd700 100%);
    object-fit: cover;
}

.feature-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.feature-info p {
    color: #ffd700;
    font-weight: 700;
}

.claim-btn {
    background: linear-gradient(135deg, #ff1493 0%, #ffd700 100%);
    color: #000000;
    border: none;
    padding: 20px 40px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    animation: pulse 2s infinite;
}

.claim-btn.mega {
    font-size: 20px;
    padding: 25px 50px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.claim-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
}

.daily-offers {
    padding: 80px 0;
    background: rgba(15, 52, 96, 0.3);
}

.daily-offers h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 50px;
    color: #ff1493;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

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

.offer-card {
    background: rgba(26, 26, 46, 0.9);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(255, 20, 147, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 20, 147, 0.1), transparent);
    transition: left 0.5s ease;
}

.offer-card:hover::before {
    left: 100%;
}

.offer-card:hover {
    transform: translateY(-5px);
    border-color: #ff1493;
    box-shadow: 0 15px 30px rgba(255, 20, 147, 0.3);
}

.offer-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff1493 0%, #9932cc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

.offer-icon i {
    font-size: 28px;
    color: #ffffff;
}

.offer-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.offer-amount {
    font-size: 28px;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 15px;
    display: block;
}

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

.offer-content img {
    width: 100%;
    height: 100px;
    border-radius: 10px;
    background: linear-gradient(135deg, #ff1493 0%, #9932cc 100%);
    object-fit: cover;
    margin-bottom: 20px;
}

.offer-btn {
    background: linear-gradient(135deg, #00ff7f 0%, #32cd32 100%);
    color: #000000;
    border: none;
    padding: 12px 24px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.offer-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 255, 127, 0.4);
}

.vip-section {
    padding: 80px 0;
}

.vip-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(138, 43, 226, 0.1) 100%);
    border: 2px solid #ffd700;
    border-radius: 25px;
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

.vip-header {
    text-align: center;
    margin-bottom: 40px;
}

.vip-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 15px;
    animation: neon 2s infinite alternate;
}

.vip-header p {
    color: #cccccc;
    font-size: 18px;
}

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

.vip-benefit {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

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

.vip-benefit img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
    object-fit: cover;
}

.benefit-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.benefit-info p {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.4;
}

.vip-btn {
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
    color: #000000;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.vip-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

.holiday-specials {
    padding: 80px 0;
    background: rgba(22, 33, 62, 0.5);
}

.holiday-specials h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 50px;
    color: #ffd700;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

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

.holiday-card {
    background: rgba(26, 26, 46, 0.9);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 20, 147, 0.3);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
}

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

.holiday-image {
    height: 150px;
    overflow: hidden;
}

.holiday-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: linear-gradient(135deg, #ff1493 0%, #ffd700 100%);
}

.holiday-content {
    padding: 25px;
}

.holiday-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 15px;
}

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

.holiday-prize {
    background: rgba(255, 20, 147, 0.2);
    color: #ff1493;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.bonus-terms {
    padding: 80px 0;
}

.bonus-terms h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 50px;
    color: #00bfff;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.term-item {
    background: rgba(26, 26, 46, 0.9);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    border: 1px solid rgba(0, 191, 255, 0.3);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
}

.term-item:hover {
    transform: translateY(-5px);
    border-color: #00bfff;
    box-shadow: 0 10px 20px rgba(0, 191, 255, 0.2);
}

.term-item i {
    font-size: 40px;
    color: #00bfff;
    margin-bottom: 15px;
}

.term-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.term-item p {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.4;
}

.action-section {
    padding: 80px 0;
    background: rgba(15, 52, 96, 0.3);
}

.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.action-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    animation: fadeInUp 0.8s ease-out;
    flex: 1;
    min-width: 250px;
    justify-content: center;
}

.action-btn.primary {
    background: linear-gradient(135deg, #ff1493 0%, #ffd700 100%);
    color: #000000;
}

.action-btn.secondary {
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
    color: #000000;
}

.action-btn.tertiary {
    background: linear-gradient(135deg, #00ff7f 0%, #32cd32 100%);
    color: #000000;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .bonuses-hero h1 {
        font-size: 32px;
    }
    
    .bonuses-hero p {
        font-size: 16px;
    }
    
    .bonus-card {
        padding: 30px 20px;
    }
    
    .bonus-header h2 {
        font-size: 28px;
    }
    
    .bonus-amount {
        font-size: 36px;
    }
    
    .bonus-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .offer-card {
        padding: 20px;
    }
    
    .vip-card {
        padding: 30px 20px;
    }
    
    .vip-benefits {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .vip-benefit {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .holidays-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .terms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .action-btn {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .bonuses-hero {
        padding: 40px 0;
    }
    
    .bonuses-hero h1 {
        font-size: 28px;
    }
    
    .welcome-bonus, .daily-offers, .vip-section, .holiday-specials, .bonus-terms, .action-section {
        padding: 40px 0;
    }
    
    .bonus-header h2 {
        font-size: 24px;
    }
    
    .bonus-amount {
        font-size: 32px;
    }
    
    .claim-btn.mega {
        font-size: 16px;
        padding: 20px 30px;
    }
    
    .vip-header h2 {
        font-size: 28px;
    }
    
    .terms-grid {
        grid-template-columns: 1fr;
    }
    
    .term-item i {
        font-size: 32px;
    }
}