/* Bonuses Page Specific Styles */

/* Bonuses Hero */
.bonuses-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(30, 27, 75, 0.9), rgba(91, 33, 182, 0.9));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bonuses-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="gifts" width="40" height="40" patternUnits="userSpaceOnUse"><text x="20" y="25" font-size="16" fill="rgba(245,158,11,0.2)" text-anchor="middle">🎁</text></pattern></defs><rect width="100" height="100" fill="url(%23gifts)"/></svg>');
    animation: giftFloat 30s linear infinite;
}

.bonuses-hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.bonuses-hero h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--accent-color);
    position: relative;
    z-index: 2;
}

.bonuses-hero p {
    font-size: 18px;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Welcome Bonus */
.welcome-bonus {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(91, 33, 182, 0.9), rgba(16, 33, 62, 0.9));
}

.bonus-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    animation: bonusGlow 4s ease-in-out infinite;
}

.bonus-card.featured {
    border: 2px solid var(--accent-color);
    box-shadow: 0 0 40px rgba(245, 158, 11, 0.4);
}

.bonus-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(45deg, var(--success-color), #059669);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    z-index: 3;
    animation: badgeFloat 3s ease-in-out infinite;
}

.bonus-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 40px 20px;
    position: relative;
    z-index: 2;
}

.bonus-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: white;
}

.bonus-amount {
    font-size: 72px;
    font-weight: 700;
    color: var(--accent-color);
    text-shadow: 0 0 30px rgba(245, 158, 11, 0.5);
    animation: bonusAmountPulse 2s ease-in-out infinite;
}

.bonus-content {
    padding: 0 40px 40px;
    position: relative;
    z-index: 2;
}

.bonus-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

.bonus-content p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 24px;
    line-height: 1.6;
}

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

.detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.detail .label {
    font-size: 14px;
    color: var(--text-light);
    opacity: 0.8;
}

.detail .value {
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-color);
}

.bonus-content img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin: 20px 0;
}

.claim-btn {
    background: linear-gradient(45deg, var(--accent-color), #fbbf24);
    color: var(--text-dark);
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 700;
    width: 100%;
    justify-content: center;
    animation: claimPulse 3s ease-in-out infinite;
}

/* Ongoing Deals */
.ongoing-deals {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(16, 33, 62, 0.9), rgba(30, 27, 75, 0.9));
}

.ongoing-deals h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: white;
}

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

.deal-card {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    animation: dealSlide 0.8s ease-out;
}

.deal-card:nth-child(2) { animation-delay: 0.2s; }
.deal-card:nth-child(3) { animation-delay: 0.4s; }

.deal-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.deal-card.weekend {
    border: 2px solid var(--success-color);
    box-shadow: 0 0 25px rgba(16, 185, 129, 0.3);
}

.deal-card.daily {
    border: 2px solid var(--secondary-color);
    box-shadow: 0 0 25px rgba(236, 72, 153, 0.3);
}

.deal-day {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 12px;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.deal-content {
    padding: 24px;
    text-align: center;
}

.deal-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

.deal-offer {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    text-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
    margin-bottom: 16px;
    animation: offerGlow 2s ease-in-out infinite alternate;
}

.deal-content p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 20px;
    line-height: 1.5;
}

.deal-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.deal-details span {
    font-size: 14px;
    color: var(--secondary-color);
    font-weight: 500;
}

.deal-content img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}

.deal-btn {
    width: 100%;
    justify-content: center;
}

/* VIP Rewards */
.vip-rewards {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(30, 27, 75, 0.9), rgba(91, 33, 182, 0.9));
}

.vip-rewards h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: white;
}

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

.vip-level {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    animation: vipFloat 8s ease-in-out infinite;
}

.vip-level:nth-child(even) { animation-delay: -4s; }

.vip-level:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.vip-level.bronze { border-color: #cd7f32; }
.vip-level.silver { border-color: #c0c0c0; }
.vip-level.gold { border-color: #ffd700; }
.vip-level.diamond { 
    border: 2px solid var(--accent-color);
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.4);
}

.level-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    animation: levelIcon 6s ease-in-out infinite;
}

.bronze .level-icon { background: linear-gradient(45deg, #cd7f32, #b8860b); }
.silver .level-icon { background: linear-gradient(45deg, #c0c0c0, #a9a9a9); }
.gold .level-icon { background: linear-gradient(45deg, #ffd700, #ffb347); }
.diamond .level-icon { background: linear-gradient(45deg, var(--accent-color), #fbbf24); }

.vip-level h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.level-benefits {
    margin-bottom: 20px;
}

.level-benefits p {
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--text-light);
    opacity: 0.9;
}

.level-requirement {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-color);
}

/* Holiday Specials */
.holiday-specials {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(91, 33, 182, 0.9), rgba(30, 27, 75, 0.9));
}

.holiday-specials h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: white;
}

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

.holiday-card {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    animation: holidayShine 10s ease-in-out infinite;
}

.holiday-card:nth-child(2) { animation-delay: -5s; }

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

.holiday-card.eid { border-color: var(--success-color); }
.holiday-card.pohela { border-color: var(--accent-color); }
.holiday-card.independence { border-color: var(--secondary-color); }

.holiday-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    animation: holidayIcon 8s ease-in-out infinite;
}

.holiday-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

.holiday-content p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 20px;
    line-height: 1.5;
}

.holiday-offer {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.holiday-offer span {
    font-size: 14px;
    color: var(--accent-color);
    font-weight: 600;
}

.holiday-content img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
}

/* Bonus Terms */
.bonus-terms {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(30, 27, 75, 0.9), rgba(16, 33, 62, 0.9));
}

.bonus-terms h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: white;
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.term-item {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.term-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.term-item i {
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: 16px;
    animation: termIcon 4s ease-in-out infinite alternate;
}

.term-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: white;
}

.term-item p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(30, 27, 75, 0.9), rgba(91, 33, 182, 0.9));
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.cta-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
}

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

/* Animations */
@keyframes giftFloat {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-40px) rotate(360deg); }
}

@keyframes bonusGlow {
    0%, 100% { box-shadow: 0 0 30px rgba(245, 158, 11, 0.3); }
    50% { box-shadow: 0 0 50px rgba(245, 158, 11, 0.6); }
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

@keyframes bonusAmountPulse {
    0%, 100% { transform: scale(1); text-shadow: 0 0 30px rgba(245, 158, 11, 0.5); }
    50% { transform: scale(1.05); text-shadow: 0 0 50px rgba(245, 158, 11, 0.8); }
}

@keyframes claimPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@keyframes dealSlide {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes offerGlow {
    0% { text-shadow: 0 0 20px rgba(245, 158, 11, 0.5); }
    100% { text-shadow: 0 0 40px rgba(245, 158, 11, 0.8); }
}

@keyframes vipFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes levelIcon {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
}

@keyframes holidayShine {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.9; }
}

@keyframes holidayIcon {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(20deg); }
}

@keyframes termIcon {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .bonuses-hero h1 {
        font-size: 32px;
    }
    
    .bonuses-hero h2 {
        font-size: 20px;
    }
    
    .bonus-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .bonus-amount {
        font-size: 48px;
    }
    
    .bonus-content {
        padding: 0 24px 40px;
    }
    
    .bonus-details {
        grid-template-columns: 1fr;
    }
    
    .deals-grid, .vip-levels, .holidays-grid {
        grid-template-columns: 1fr;
    }
    
    .terms-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .bonuses-hero {
        padding: 60px 0;
    }
    
    .bonus-card, .deal-card, .vip-level, .holiday-card, .term-item {
        margin: 0 10px;
    }
    
    .bonus-header, .bonus-content {
        padding: 20px;
    }
    
    .bonus-amount {
        font-size: 36px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
}