/* 中秋節特殊樣式 */
.midautumn-special {
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1332 50%, #0a0e1a 100%);
    border-radius: 16px;
    overflow: hidden;
}

.enhanced-header {
    position: relative;
    background: linear-gradient(45deg, #2d1b69 0%, #11998e 100%);
    padding: 2rem;
}

.festival-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.image-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
}

.festival-badge {
    background: linear-gradient(45deg, #ff6b6b, #ffd93d);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255,107,107,0.3);
}

.festival-title {
    background: linear-gradient(45deg, #ffd93d, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    margin: 1rem 0;
}

.title-decoration {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.title-decoration .divider {
    height: 2px;
    flex: 1;
    background: linear-gradient(45deg, #ffd93d, #ff6b6b);
    border-radius: 2px;
}

.moon-emoji, .world-emoji {
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.festival-body {
    padding: 2rem;
}

.intro-section {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
}

.festival-intro {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffd93d;
}

.festival-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #e0e0e0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.benefit-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.benefit-card h3 {
    color: #4ecdc4;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
}

.benefit-icon {
    font-size: 1.5rem;
    min-width: 40px;
    text-align: center;
}

.benefit-details {
    display: flex;
    flex-direction: column;
}

.benefit-details strong {
    color: #ffd93d;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.benefit-details span {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.game-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.game-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
}

.game-icon {
    font-size: 1.3rem;
    min-width: 35px;
    text-align: center;
}

.game-info {
    display: flex;
    flex-direction: column;
}

.game-info strong {
    color: #4ecdc4;
    font-size: 0.95rem;
}

.game-info span {
    color: #b0b0b0;
    font-size: 0.8rem;
}

.international-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255,107,107,0.1) 0%, rgba(78,205,196,0.1) 100%);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
}

.international-section h3 {
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.league-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.league-item {
    background: rgba(255,255,255,0.1);
    padding: 0.6rem;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    color: #ffd93d;
    border: 1px solid rgba(255,255,255,0.2);
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    color: #e0e0e0;
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li::before {
    content: "⚡";
    position: absolute;
    left: 0;
    color: #ffd93d;
}

.contact-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
}

.contact-section h3 {
    color: #4ecdc4;
    margin-bottom: 1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    color: #e0e0e0;
}

.contact-icon {
    font-size: 1.2rem;
    min-width: 30px;
    text-align: center;
}

.festival-closing {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(45deg, rgba(255,215,61,0.1), rgba(255,107,107,0.1));
    border-radius: 12px;
    border: 2px solid rgba(255,215,61,0.3);
}

.festival-closing .highlight-text {
    font-size: 1.2rem;
    color: #ffd93d;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255,215,61,0.3);
}

.festival-cta {
    justify-content: center;
    margin-top: 2rem;
}

.news-cta-button.enhanced {
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.news-cta-button.enhanced::before {
    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;
}

.news-cta-button.enhanced:hover::before {
    left: 100%;
}

.news-cta-button.enhanced:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .game-showcase {
        grid-template-columns: 1fr;
    }
    
    .league-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .festival-title {
        font-size: 1.4rem;
    }
    
    .enhanced-header {
        padding: 1.5rem;
    }
    
    .festival-body {
        padding: 1.5rem;
    }
}
