/* Bonuses Page Specific Styles */

/* Bonuses Hero Section */
.bonuses-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a1810 100%);
    padding: 120px 0 80px;
    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 30% 30%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(139, 0, 0, 0.08) 0%, transparent 50%);
    animation: bonuses-bg-move 25s ease-in-out infinite alternate;
}

@keyframes bonuses-bg-move {
    0% { transform: translateX(-8px) translateY(-8px) rotate(-1deg); }
    100% { transform: translateX(8px) translateY(8px) rotate(1deg); }
}

.bonuses-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: title-glow 3s ease-in-out infinite alternate;
}

.bonuses-hero p {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Bonus */
.hero-bonus {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.bonus-card.main-bonus {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(26, 26, 26, 0.95));
    border: 3px solid var(--primary-color);
    border-radius: var(--border-radius-large);
    padding: 40px;
    text-align: center;
    position: relative;
    max-width: 400px;
    animation: main-bonus-glow 3s infinite alternate;
}

@keyframes main-bonus-glow {
    0% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.3); }
    100% { box-shadow: 0 0 40px rgba(255, 215, 0, 0.6); }
}

.bonus-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-secondary);
    color: var(--light-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    animation: badge-pulse 2s infinite;
}

@keyframes badge-pulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.05); }
}

.bonus-title {
    color: var(--light-color);
    font-size: 1.2rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.bonus-amount {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-color);
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    animation: amount-glow 2s infinite alternate;
}

@keyframes amount-glow {
    0% { text-shadow: 0 0 20px rgba(255, 215, 0, 0.5); }
    100% { text-shadow: 0 0 30px rgba(255, 215, 0, 0.8); }
}

.bonus-subtitle {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.bonus-code {
    background: rgba(0, 0, 0, 0.5);
    padding: 12px 20px;
    border-radius: var(--border-radius);
    margin-bottom: 24px;
    border: 2px solid var(--primary-color);
}

.code-label {
    color: #ccc;
    font-size: 0.9rem;
    margin-right: 8px;
}

.code-value {
    color: var(--primary-color);
    font-weight: 900;
    font-size: 1.2rem;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
}

.btn-claim {
    background: var(--gradient-primary);
    color: var(--dark-color);
    padding: 16px 32px;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    animation: claim-pulse 3s infinite;
}

@keyframes claim-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

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

/* Welcome Bonus Section */
.welcome-bonus {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
}

.welcome-package {
    max-width: 800px;
    margin: 0 auto;
}

.package-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 30px;
    background: rgba(26, 26, 26, 0.8);
    border-radius: var(--border-radius);
    border: 2px solid rgba(255, 215, 0, 0.2);
    margin-bottom: 24px;
    transition: var(--transition);
}

.package-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

.package-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.package-icon i {
    font-size: 1.8rem;
    color: var(--dark-color);
}

.package-details {
    flex: 1;
}

.package-details h3 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 1.4rem;
}

.package-details p {
    color: #e0e0e0;
    margin-bottom: 8px;
    font-size: 1rem;
}

.package-example {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-style: italic;
}

.package-value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.package-terms {
    background: rgba(80, 200, 120, 0.1);
    padding: 24px;
    border-radius: var(--border-radius);
    border: 2px solid rgba(80, 200, 120, 0.3);
    margin-top: 30px;
}

.package-terms h4 {
    color: var(--accent-color);
    margin-bottom: 16px;
    font-size: 1.2rem;
}

.package-terms ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 8px;
}

.package-terms ul li {
    color: #e0e0e0;
    padding-left: 20px;
    position: relative;
    font-size: 0.95rem;
}

.package-terms ul li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* Promo Code Section */
.promo-code-section {
    text-align: center;
    margin-top: 30px;
    padding: 24px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: var(--border-radius);
    border: 2px solid var(--primary-color);
}

.code-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.code-text {
    background: var(--gradient-primary);
    color: var(--dark-color);
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 900;
    font-size: 1.5rem;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 3px;
}

.copy-code {
    background: var(--gradient-accent);
    color: var(--dark-color);
    border: none;
    padding: 12px 16px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.copy-code:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(80, 200, 120, 0.3);
}

.promo-code-section p {
    color: #e0e0e0;
    font-size: 1rem;
    margin: 0;
}

/* Recurring Bonuses */
.recurring-bonuses {
    background: linear-gradient(135deg, #2d1810 0%, #1a1a1a 50%, #2d1810 100%);
}

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

.offer-card {
    background: rgba(26, 26, 26, 0.9);
    border-radius: var(--border-radius);
    padding: 24px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.offer-card.monday::before { background: var(--gradient-primary); }
.offer-card.tuesday::before { background: var(--gradient-accent); }
.offer-card.wednesday::before { background: var(--gradient-secondary); }
.offer-card.weekend::before { background: linear-gradient(45deg, #4B0082, #8A2BE2); }
.offer-card.happy-hour::before { background: linear-gradient(45deg, #FF6B35, #FFA500); }

.offer-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
}

.offer-day {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.day-name {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.day-icon {
    font-size: 1.5rem;
}

.offer-details h3 {
    color: var(--light-color);
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.offer-value {
    color: var(--primary-color);
    font-weight: 900;
    font-size: 1.5rem;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 12px;
    display: block;
}

.offer-details p {
    color: #e0e0e0;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.offer-games {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.game-tag {
    background: rgba(80, 200, 120, 0.2);
    color: var(--accent-color);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.btn-offer {
    background: var(--gradient-accent);
    color: var(--dark-color);
    padding: 12px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    width: 100%;
    text-align: center;
    transition: var(--transition);
}

.btn-offer:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(80, 200, 120, 0.4);
}

/* VIP Lounge */
.vip-lounge {
    background: linear-gradient(135deg, #0f2a0f 0%, #1a1a1a 50%, #2d1810 100%);
}

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

.vip-tier {
    background: rgba(26, 26, 26, 0.9);
    border-radius: var(--border-radius);
    padding: 30px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: var(--transition);
    position: relative;
    text-align: center;
}

.vip-tier.bronze { border-color: #CD7F32; }
.vip-tier.silver { border-color: #C0C0C0; }
.vip-tier.gold { border-color: #FFD700; }
.vip-tier.platinum { border-color: #E5E4E2; }

.vip-tier:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
}

.vip-tier.gold:hover,
.vip-tier.platinum:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.tier-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 1.3rem;
    font-weight: 700;
}

.tier-badge i {
    font-size: 1.5rem;
}

.vip-tier.bronze .tier-badge { color: #CD7F32; }
.vip-tier.silver .tier-badge { color: #C0C0C0; }
.vip-tier.gold .tier-badge { color: #FFD700; }
.vip-tier.platinum .tier-badge { color: #E5E4E2; }

.tier-requirements {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--light-color);
    margin-bottom: 20px;
}

.tier-benefits h4 {
    color: var(--accent-color);
    margin-bottom: 12px;
    font-size: 1.1rem;
    text-align: left;
}

.tier-benefits ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.tier-benefits ul li {
    color: #e0e0e0;
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative;
    font-size: 0.9rem;
}

.tier-benefits ul li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* VIP Features */
.vip-features {
    background: rgba(26, 26, 26, 0.8);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 2px solid rgba(255, 215, 0, 0.3);
    margin-bottom: 40px;
}

.vip-features h3 {
    color: var(--primary-color);
    margin-bottom: 24px;
    font-size: 1.5rem;
    text-align: center;
}

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

.vip-feature {
    text-align: center;
    padding: 20px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: var(--border-radius-small);
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: var(--transition);
}

.vip-feature:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

.vip-feature i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.vip-feature h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.vip-feature p {
    color: #e0e0e0;
    font-size: 0.9rem;
    margin: 0;
}

.btn-vip {
    background: var(--gradient-primary);
    color: var(--dark-color);
    padding: 16px 40px;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    display: block;
    margin: 0 auto;
    text-align: center;
    max-width: 300px;
}

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

/* Holiday Bonuses */
.holiday-bonuses {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1810 50%, #0f2a0f 100%);
}

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

.holiday-card {
    background: rgba(26, 26, 26, 0.9);
    border-radius: var(--border-radius);
    padding: 30px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.holiday-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.holiday-card.heritage::before { background: linear-gradient(45deg, #007A4D, #FFB612); }
.holiday-card.freedom::before { background: linear-gradient(45deg, #FF0000, #FFFFFF, #0000FF); }
.holiday-card.christmas::before { background: linear-gradient(45deg, #FF0000, #00FF00); }
.holiday-card.youth::before { background: linear-gradient(45deg, #000000, #007A4D, #FFB612); }

.holiday-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
}

.holiday-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.holiday-icon {
    font-size: 2.5rem;
}

.holiday-info h3 {
    color: var(--primary-color);
    margin-bottom: 4px;
    font-size: 1.4rem;
}

.holiday-date {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 600;
}

.holiday-details {
    margin-bottom: 24px;
}

.holiday-prize {
    color: var(--primary-color);
    font-weight: 900;
    font-size: 1.3rem;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 12px;
}

.holiday-details p {
    color: #e0e0e0;
    margin-bottom: 16px;
    line-height: 1.5;
}

.holiday-games {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.game {
    background: rgba(80, 200, 120, 0.2);
    color: var(--accent-color);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.btn-holiday {
    background: var(--gradient-secondary);
    color: var(--light-color);
    padding: 12px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    width: 100%;
    text-align: center;
    transition: var(--transition);
}

.btn-holiday:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 0, 0, 0.4);
}

/* Game Bonuses */
.game-bonuses {
    background: linear-gradient(135deg, #2d1810 0%, #1a1a1a 50%, #102d2d 100%);
}

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

.game-bonus-card {
    background: rgba(26, 26, 26, 0.9);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: var(--transition);
}

.game-bonus-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
}

.game-image {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.game-bonus-card:hover .game-image img {
    transform: scale(1.1);
}

.bonus-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.8), rgba(139, 0, 0, 0.8));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.game-bonus-card:hover .bonus-overlay {
    opacity: 1;
}

.bonus-type {
    color: var(--light-color);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bonus-amount {
    color: var(--light-color);
    font-weight: 900;
    font-size: 2rem;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.game-bonus-info {
    padding: 24px;
}

.game-bonus-info h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.game-bonus-info p {
    color: #e0e0e0;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.bonus-conditions {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 8px;
}

.bonus-conditions span {
    color: var(--accent-color);
    font-weight: 600;
}

.btn-game-bonus {
    background: var(--gradient-accent);
    color: var(--dark-color);
    padding: 12px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    width: 100%;
    text-align: center;
    transition: var(--transition);
}

.btn-game-bonus:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(80, 200, 120, 0.4);
}

/* Bonus Terms */
.bonus-terms {
    background: linear-gradient(135deg, #0f2a0f 0%, #1a1a1a 50%, #2d1810 100%);
}

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

.terms-card {
    background: rgba(26, 26, 26, 0.9);
    border-radius: var(--border-radius);
    padding: 30px;
    border: 2px solid rgba(80, 200, 120, 0.2);
    transition: var(--transition);
    text-align: center;
}

.terms-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 25px rgba(80, 200, 120, 0.2);
}

.terms-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.terms-icon i {
    font-size: 1.8rem;
    color: var(--dark-color);
}

.terms-content h3 {
    color: var(--accent-color);
    margin-bottom: 16px;
    font-size: 1.3rem;
}

.terms-content ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.terms-content ul li {
    color: #e0e0e0;
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative;
    font-size: 0.9rem;
}

.terms-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.terms-note {
    background: rgba(139, 0, 0, 0.1);
    padding: 20px;
    border-radius: var(--border-radius);
    border: 2px solid rgba(139, 0, 0, 0.3);
    text-align: center;
}

.terms-note p {
    color: #e0e0e0;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.terms-note strong {
    color: var(--secondary-color);
}

/* Bonus Calendar */
.bonus-calendar {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1810 50%, #0f2a0f 100%);
}

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

.calendar-week {
    background: rgba(26, 26, 26, 0.8);
    border-radius: var(--border-radius);
    padding: 20px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: var(--transition);
}

.calendar-week:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.week-header {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 16px;
    text-align: center;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.calendar-day {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-small);
    transition: var(--transition);
}

.calendar-day:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateX(5px);
}

.calendar-day.weekend {
    background: rgba(139, 0, 0, 0.1);
    border: 1px solid rgba(139, 0, 0, 0.3);
}

.calendar-day.special {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--primary-color);
}

.day {
    color: var(--light-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.bonus {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.85rem;
}

.calendar-note {
    text-align: center;
    color: #ccc;
    font-style: italic;
    font-size: 0.95rem;
}

/* Bonuses CTA */
.bonuses-cta {
    background: linear-gradient(135deg, #2d1810 0%, #1a1a1a 50%, #0f2a0f 100%);
    text-align: center;
    position: relative;
}

.bonuses-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(80, 200, 120, 0.05) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 30px;
    background: linear-gradient(45deg, #FFD700, #50C878, #FF6B35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 30px;
}

.cta-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

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

.cta-bonus-amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    font-family: 'Orbitron', sans-serif;
    display: block;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.cta-bonus-text {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.cta-plus {
    font-size: 2rem;
    color: var(--light-color);
    font-weight: 900;
}

.cta-code {
    margin-bottom: 40px;
    font-size: 1.1rem;
    color: #e0e0e0;
}

.cta-code strong {
    color: var(--primary-color);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

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

.cta-buttons .btn {
    min-width: 220px;
    font-weight: 700;
}

/* Footer Enhancements */
.footer-promo {
    text-align: center;
    margin-top: 16px;
}

.promo-code {
    background: var(--gradient-primary);
    color: var(--dark-color);
    padding: 8px 16px;
    border-radius: var(--border-radius);
    font-weight: 900;
    font-size: 1.1rem;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
    margin-bottom: 8px;
    display: inline-block;
}

.promo-desc {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-bonus {
        padding: 0 20px;
    }
    
    .bonus-card.main-bonus {
        padding: 30px 20px;
        max-width: 350px;
    }
    
    .bonus-amount {
        font-size: 3rem;
    }
    
    .package-item {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .package-terms ul {
        grid-template-columns: 1fr;
    }
    
    .offers-calendar {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .vip-tiers {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .vip-features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .holiday-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .game-bonus-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .terms-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .calendar-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-highlight {
        flex-direction: column;
        gap: 16px;
    }
    
    .cta-buttons {
        gap: 16px;
    }
    
    .cta-buttons .btn {
        min-width: 200px;
    }
}

@media (max-width: 480px) {
    .bonuses-hero {
        padding: 100px 0 60px;
    }
    
    .bonus-card.main-bonus {
        padding: 24px 16px;
        max-width: 300px;
    }
    
    .bonus-amount {
        font-size: 2.5rem;
    }
    
    .code-display {
        flex-direction: column;
        gap: 12px;
    }
    
    .package-item {
        padding: 20px;
    }
    
    .offer-card {
        padding: 20px;
    }
    
    .vip-tier {
        padding: 20px;
    }
    
    .holiday-card {
        padding: 20px;
    }
    
    .holiday-header {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .game-bonus-info {
        padding: 20px;
    }
    
    .bonus-conditions {
        flex-direction: column;
        gap: 8px;
    }
    
    .terms-card {
        padding: 20px;
    }
    
    .calendar-week {
        padding: 16px;
    }
    
    .cta-bonus-amount {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        min-width: 240px;
    }
}

/* Copy Code Function */
function copyPromoCode() {
    const codeText = 'MIO555SA';
    navigator.clipboard.writeText(codeText).then(() => {
        const button = document.querySelector('.copy-code');
        const originalText = button.innerHTML;
        button.innerHTML = '<i class="fas fa-check"></i> Copied!';
        button.style.background = 'var(--gradient-accent)';
        
        setTimeout(() => {
            button.innerHTML = originalText;
            button.style.background = 'var(--gradient-accent)';
        }, 2000);
    });
}