/* Promotions Page Specific Styles */

.promotions-hero {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 50%, #8e44ad 100%);
    padding: 60px 40px;
    border-radius: 20px;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.promotions-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"><g opacity="0.1"><polygon points="20,20 30,10 40,20 30,30" fill="white"/><polygon points="70,30 80,20 90,30 80,40" fill="white"/><polygon points="40,70 50,60 60,70 50,80" fill="white"/><polygon points="10,60 20,50 30,60 20,70" fill="white"/></g></svg>');
    animation: promoFloat 20s ease-in-out infinite;
}

@keyframes promoFloat {
    0%, 100% { transform: scale(1) rotate(0deg); }
    33% { transform: scale(1.05) rotate(120deg); }
    66% { transform: scale(1.02) rotate(240deg); }
}

.promotions-hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

.promotions-hero p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.hero-highlight {
    display: flex;
    justify-content: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.highlight-item {
    text-align: center;
}

.highlight-value {
    font-size: 36px;
    font-weight: bold;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 5px;
}

.highlight-label {
    font-size: 14px;
    opacity: 0.8;
}

/* Welcome Package */
.welcome-package {
    margin-bottom: 60px;
}

.welcome-package h2 {
    text-align: center;
    font-size: 36px;
    color: #ffd700;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.package-card {
    background: linear-gradient(145deg, #2c3e50 0%, #34495e 100%);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    position: relative;
}

.package-card.mega {
    border: 4px solid #ffd700;
    background: linear-gradient(145deg, #8e44ad 0%, #9b59b6 100%);
    animation: megaGlow 3s ease-in-out infinite;
}

@keyframes megaGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.3); }
    50% { box-shadow: 0 0 40px rgba(255, 215, 0, 0.6), 0 0 60px rgba(255, 215, 0, 0.4); }
}

.package-header {
    padding: 30px;
    text-align: center;
    position: relative;
}

.package-badge {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: bold;
    position: absolute;
    top: 20px;
    right: 20px;
    text-transform: uppercase;
    animation: badgeShine 2s ease-in-out infinite;
}

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

.package-header h3 {
    color: #ffd700;
    font-size: 28px;
    margin-bottom: 15px;
}

.package-value {
    font-size: 24px;
    color: #ffffff;
    font-weight: bold;
    background: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 20px;
    display: inline-block;
}

.package-content {
    padding: 0 30px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.package-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.detail-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateX(10px);
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #1a1a2e;
    flex-shrink: 0;
}

.detail-info h4 {
    color: #ffd700;
    margin-bottom: 8px;
    font-size: 18px;
}

.detail-info p {
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
    margin: 0;
}

.package-example {
    background: rgba(0,0,0,0.2);
    padding: 25px;
    border-radius: 15px;
    height: fit-content;
}

.package-example h4 {
    color: #ffd700;
    margin-bottom: 20px;
    font-size: 18px;
    text-align: center;
}

.calculator-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.calc-row.total {
    border-top: 2px solid #ffd700;
    border-bottom: none;
    padding-top: 15px;
    margin-top: 10px;
    font-weight: bold;
    font-size: 16px;
}

.calc-label {
    color: rgba(255,255,255,0.8);
}

.calc-value {
    color: #ffd700;
    font-weight: bold;
}

.package-action {
    padding: 30px;
    text-align: center;
    background: rgba(0,0,0,0.1);
}

.package-btn {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
    color: #1a1a2e;
    padding: 18px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255,215,0,0.3);
}

.package-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255,215,0,0.5);
}

/* Current Promotions */
.current-promotions {
    margin-bottom: 60px;
}

.current-promotions h2 {
    text-align: center;
    font-size: 36px;
    color: #ffd700;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

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

.promo-card {
    background: linear-gradient(145deg, #2c3e50 0%, #34495e 100%);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.promo-card.tournament {
    background: linear-gradient(145deg, #e74c3c 0%, #c0392b 100%);
}

.promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.promo-header {
    padding: 25px 25px 15px;
    text-align: center;
    position: relative;
}

.promo-badge {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
    position: absolute;
    top: 15px;
    right: 15px;
    text-transform: uppercase;
}

.promo-badge.weekly {
    background: linear-gradient(135deg, #3742fa 0%, #2f3542 100%);
}

.promo-badge.cashback {
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
}

.promo-badge.birthday {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.promo-badge.tournament {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
    color: #1a1a2e;
}

.promo-header h3 {
    color: #ffd700;
    font-size: 22px;
    margin-bottom: 10px;
}

.promo-value {
    font-size: 20px;
    color: #ffffff;
    font-weight: bold;
    background: rgba(255,255,255,0.1);
    padding: 8px 16px;
    border-radius: 15px;
    display: inline-block;
}

.promo-content {
    padding: 0 25px 20px;
}

.promo-content p {
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    margin-bottom: 20px;
}

.promo-features {
    margin-bottom: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
}

.feature i {
    color: #27ae60;
    font-size: 12px;
}

.promo-countdown {
    background: rgba(255,215,0,0.1);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255,215,0,0.2);
}

.promo-countdown span {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
}

.countdown {
    color: #ffd700;
    font-weight: bold;
    font-size: 16px;
}

.cashback-tiers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 15px;
}

.tier {
    background: rgba(255,255,255,0.1);
    padding: 8px 12px;
    border-radius: 8px;
    text-align: center;
    font-size: 12px;
    color: #ffd700;
    font-weight: bold;
}

.birthday-note {
    background: rgba(255,215,0,0.1);
    padding: 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.9);
    border-left: 3px solid #ffd700;
}

.tournament-prizes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.prize {
    background: rgba(255,215,0,0.1);
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    font-size: 13px;
    color: #ffd700;
    font-weight: bold;
    border: 1px solid rgba(255,215,0,0.2);
}

.tournament-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: rgba(255,255,255,0.8);
}

.promo-action {
    padding: 20px 25px;
    background: rgba(0,0,0,0.1);
    text-align: center;
}

.promo-btn {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.promo-btn.tournament {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
    color: #1a1a2e;
}

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

/* VIP Program */
.vip-program {
    margin-bottom: 60px;
}

.vip-program h2 {
    text-align: center;
    font-size: 36px;
    color: #ffd700;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.vip-overview {
    background: linear-gradient(145deg, #2c3e50 0%, #34495e 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

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

.vip-description h3 {
    color: #ffd700;
    font-size: 24px;
    margin-bottom: 15px;
}

.vip-description p {
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    font-size: 16px;
}

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

.vip-level {
    text-align: center;
    padding: 25px;
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.vip-level.bronze {
    background: linear-gradient(145deg, #cd7f32 0%, #b8860b 100%);
}

.vip-level.silver {
    background: linear-gradient(145deg, #c0c0c0 0%, #a8a8a8 100%);
}

.vip-level.gold {
    background: linear-gradient(145deg, #ffd700 0%, #ffed4a 100%);
    color: #1a1a2e;
}

.vip-level.diamond {
    background: linear-gradient(145deg, #b9f2ff 0%, #00d4ff 100%);
    color: #1a1a2e;
}

.vip-level:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.level-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.vip-level h4 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: bold;
}

.level-requirement {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.level-benefits {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.benefit {
    background: rgba(255,255,255,0.1);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: bold;
}

/* Seasonal Promotions */
.seasonal-promotions {
    margin-bottom: 60px;
}

.seasonal-promotions h2 {
    text-align: center;
    font-size: 36px;
    color: #ffd700;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

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

.seasonal-card {
    background: linear-gradient(145deg, #16a085 0%, #1abc9c 100%);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.seasonal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(22, 160, 133, 0.3);
}

.seasonal-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #ffffff;
}

.seasonal-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.seasonal-card h3 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 18px;
}

.seasonal-card p {
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    margin-bottom: 15px;
}

.seasonal-date {
    background: rgba(255,255,255,0.2);
    padding: 8px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    color: #ffffff;
}

/* Terms & Conditions */
.terms-conditions {
    margin-bottom: 60px;
}

.terms-conditions h2 {
    text-align: center;
    font-size: 36px;
    color: #ffd700;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

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

.terms-section {
    background: linear-gradient(145deg, #2c3e50 0%, #34495e 100%);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.terms-section h3 {
    color: #ffd700;
    margin-bottom: 20px;
    font-size: 20px;
}

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

.terms-section li {
    color: rgba(255,255,255,0.9);
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.terms-section li::before {
    content: '•';
    color: #ffd700;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* CTA Section */
.promotions-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.promotions-cta::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"><circle cx="25" cy="25" r="15" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/><circle cx="75" cy="75" r="20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>');
    animation: ctaFloat 25s ease-in-out infinite;
}

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

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

.promotions-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ffffff;
}

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

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 32px;
    font-weight: bold;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
    margin-top: 5px;
}

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

.cta-btn {
    padding: 15px 35px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
    color: #1a1a2e;
    box-shadow: 0 5px 15px rgba(255,215,0,0.3);
}

.cta-btn.secondary {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(231,76,60,0.3);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .promotions-hero {
        padding: 40px 20px;
    }
    
    .promotions-hero h1 {
        font-size: 28px;
    }
    
    .hero-highlight {
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .package-content {
        grid-template-columns: 1fr;
    }
    
    .promotions-grid {
        grid-template-columns: 1fr;
    }
    
    .vip-levels {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .seasonal-grid {
        grid-template-columns: 1fr;
    }
    
    .terms-content {
        grid-template-columns: 1fr;
    }
    
    .cta-stats {
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Promotion Card Animations */
@keyframes promoShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

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

.promo-card:hover::after {
    left: 100%;
}