/* Bonuses Page Specific Styles */

.welcome-bonus {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f051d 0%, #1a0b2e 50%, #2d1b3d 100%);
}

.welcome-card {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 107, 53, 0.1));
    border: 2px solid #ffd700;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.welcome-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: 0;
}

.welcome-card > * {
    position: relative;
    z-index: 1;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.bonus-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.bonus-header h2 {
    font-family: 'Orbitron', monospace;
    color: #ffd700;
    font-size: 2rem;
    margin: 0;
}

.bonus-badge {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1rem;
    animation: pulse 2s infinite;
}

.bonus-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.main-bonus,
.free-spins {
    text-align: center;
}

.bonus-amount,
.spins-amount {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 10px;
}

.bonus-title,
.spins-title {
    font-family: 'Orbitron', monospace;
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.bonus-code {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid #ffd700;
}

.spins-games {
    color: #ccc;
    font-size: 0.9rem;
}

.bonus-plus {
    font-size: 3rem;
    color: #ffd700;
    font-weight: 900;
}

.bonus-terms {
    margin-bottom: 30px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.bonus-terms p {
    color: #ccc;
    margin: 0;
    font-size: 0.9rem;
}

.claim-btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(45deg, #ffd700, #ffcc02);
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

.claim-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.6);
}

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

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

.offer-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.offer-card.highlight {
    border: 2px solid #ffd700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 107, 53, 0.1));
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

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

.offer-day {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #fff;
    padding: 15px;
    text-align: center;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.1rem;
}

.offer-content {
    padding: 25px;
}

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

.offer-details {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.percentage {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.limit {
    color: #ccc;
    font-size: 1rem;
}

.offer-content p {
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.5;
}

.games-list {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 15px 0;
}

.games-list img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: linear-gradient(45deg, #37b24d, #1c7ed6);
}

.offer-btn {
    display: inline-block;
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.offer-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.5);
}

/* VIP Club Section */
.vip-club {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d1b3d 0%, #0f051d 100%);
}

.vip-container {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.vip-benefits {
    margin-bottom: 40px;
}

.vip-benefits h3 {
    font-family: 'Orbitron', monospace;
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 25px;
    text-align: center;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.benefit-item i {
    color: #ffd700;
    font-size: 1.5rem;
}

.benefit-item span {
    color: #ccc;
    font-weight: 500;
}

.vip-levels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.vip-level {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.vip-level:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
}

.vip-level.bronze {
    border-color: #cd7f32;
}

.vip-level.silver {
    border-color: #c0c0c0;
}

.vip-level.gold {
    border-color: #ffd700;
}

.vip-level.diamond {
    border-color: #b9f2ff;
    background: linear-gradient(135deg, rgba(185, 242, 255, 0.1), rgba(255, 215, 0, 0.1));
}

.vip-level h4 {
    font-family: 'Orbitron', monospace;
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.level-req {
    background: rgba(255, 107, 53, 0.2);
    color: #ff6b35;
    padding: 8px 15px;
    border-radius: 15px;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.level-benefits {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.5;
}

.level-benefits div {
    margin-bottom: 8px;
}

.vip-btn {
    display: block;
    max-width: 300px;
    margin: 0 auto;
    padding: 15px 30px;
    background: linear-gradient(45deg, #ffd700, #ffcc02);
    color: #000;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    transition: all 0.3s ease;
}

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

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

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

.holiday-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.holiday-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.3);
}

.holiday-card.eid {
    border-color: rgba(37, 180, 77, 0.5);
}

.holiday-card.pohela {
    border-color: rgba(255, 107, 53, 0.5);
}

.holiday-card.independence {
    border-color: rgba(28, 126, 214, 0.5);
}

.holiday-card.seasonal {
    border-color: rgba(156, 54, 181, 0.5);
}

.holiday-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    background: linear-gradient(45deg, #37b24d, #1c7ed6);
}

.holiday-content {
    padding: 25px;
}

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

.holiday-rewards {
    margin-bottom: 15px;
}

.reward {
    display: block;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 8px;
    color: #ccc;
    border-left: 3px solid #ffd700;
}

.prize-pool {
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.2), rgba(247, 147, 30, 0.2));
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
}

.holiday-date {
    color: #ffd700;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    font-style: italic;
}

/* Promo Calendar Section */
.promo-calendar {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f051d 0%, #2d1b3d 100%);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.calendar-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.calendar-item.highlight {
    border-color: #ffd700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 107, 53, 0.1));
}

.calendar-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
}

.calendar-day {
    font-family: 'Orbitron', monospace;
    color: #ffd700;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.calendar-promo {
    color: #ff6b35;
    font-weight: 600;
    margin-bottom: 8px;
}

.calendar-details {
    color: #ccc;
    font-size: 0.9rem;
}

/* Game Specific Bonuses Section */
.game-specific-bonuses {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d1b3d 0%, #1a0b2e 100%);
}

.game-bonuses {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.game-bonus-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.game-bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

.game-bonus-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
}

.game-bonus-info {
    padding: 15px;
    text-align: center;
}

.game-bonus-info h4 {
    font-family: 'Orbitron', monospace;
    color: #ffd700;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.game-bonus-info p {
    color: #ccc;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.bonus-value {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #fff;
    padding: 5px 10px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.8rem;
}

/* Bonus Terms Section */
.bonus-terms {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a0b2e 0%, #0f051d 100%);
}

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

.terms-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.terms-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
}

.terms-card h4 {
    font-family: 'Orbitron', monospace;
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.terms-card ul {
    list-style: none;
    padding: 0;
}

.terms-card li {
    color: #ccc;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    line-height: 1.5;
}

.terms-card li:last-child {
    border-bottom: none;
}

/* Claim Section */
.claim-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d1b3d 0%, #0f051d 100%);
    text-align: center;
}

.claim-content h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 20px;
}

.claim-content p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.claim-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.claim-action-btn {
    display: block;
    padding: 15px 30px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.claim-action-btn.primary {
    background: linear-gradient(45deg, #ffd700, #ffcc02);
    color: #000;
    border-color: #ffd700;
}

.claim-action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

.claim-action-btn.primary:hover {
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .welcome-card {
        padding: 30px 20px;
    }
    
    .bonus-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .bonus-amount,
    .spins-amount {
        font-size: 3rem;
    }
    
    .bonus-plus {
        font-size: 2rem;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-list {
        grid-template-columns: 1fr;
    }
    
    .vip-levels {
        grid-template-columns: 1fr;
    }
    
    .calendar-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .claim-buttons {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .bonus-header {
        flex-direction: column;
        text-align: center;
    }
    
    .bonus-header h2 {
        font-size: 1.5rem;
    }
    
    .bonus-amount,
    .spins-amount {
        font-size: 2.5rem;
    }
    
    .welcome-card {
        margin: 0 10px;
    }
    
    .terms-grid {
        grid-template-columns: 1fr;
    }
    
    .claim-content h2 {
        font-size: 2rem;
    }
}