/* =============================================
   DAILY CHALLENGE STYLES
   Écran "Already Played Today" + Countdown
============================================= */

.already-played-screen {
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
}

.already-played-header {
    text-align: center;
    margin-bottom: 30px;
}

.already-played-emoji {
    font-size: 80px;
    margin-bottom: 15px;
    animation: bounce 0.6s ease;
}

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

.already-played-title {
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin: 0;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Today's Result Card */
.today-result-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 25px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.result-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    font-weight: 600;
}

.result-character {
    font-size: 36px;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.result-stats {
    display: flex;
    gap: 15px;
}

.result-stat {
    flex: 1;
    text-align: center;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

/* Countdown Card */
.countdown-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.countdown-label {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
}

.countdown-timer {
    font-size: 48px;
    font-weight: 800;
    color: #fbbf24;
    font-family: 'Courier New', monospace;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
    letter-spacing: 3px;
}

.countdown-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Other Games Section */
.play-other-games {
    text-align: center;
    padding: 20px;
}

.other-games-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.other-games-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.other-game-btn {
    display: inline-block;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
}

.other-game-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .already-played-title {
        font-size: 24px;
    }
    
    .result-character {
        font-size: 28px;
    }
    
    .countdown-timer {
        font-size: 36px;
    }
    
    .other-games-buttons {
        flex-direction: column;
    }
}
