/* ============================================
   HUD (Heads-Up Display) & SCORING
   ============================================ */

/* ============================================
   GAME HUD - Stat Boxes
   ============================================ */
.game-hud {
    display: grid;
    grid-template-columns: repeat(4, minmax(120px, 1fr));
    gap: 16px;
    flex: 1;
}

.stat-box {
    background: linear-gradient(135deg, var(--amber-light), var(--white));
    border: 2px solid var(--amber-mid);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.stat-box::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.5s ease;
}

.stat-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--amber-dark);
}

.stat-box:hover::before {
    left: 100%;
}

.stat-box .label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.stat-box .value {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--amber-mid), var(--amber-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Syne', sans-serif;
    animation: popIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stat-box .value.updated {
    animation: scoreFlip 0.4s ease-out;
}

/* ============================================
   PROGRESS BAR (Paires trouvées)
   ============================================ */
.progress-container {
    background: var(--amber-light);
    border-radius: 12px;
    overflow: hidden;
    height: 12px;
    margin-bottom: 24px;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.game-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--amber-mid), var(--amber-dark));
    width: 0%;
    transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.progress-container.pulse .game-progress-fill {
    animation: progressPulse 0.6s ease-out;
}

/* ============================================
   GAME CONTROLS
   ============================================ */
.game-controls {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
    animation: fadeInUp 0.6s ease-out 0.5s both;
}

.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

/* ============================================
   VICTORY MODAL
   ============================================ */
.victory-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    backdrop-filter: blur(5px);
    animation: fadeInBlur 0.3s ease;
    padding: 20px;
}

.victory-modal.hidden {
    display: none;
}

.modal-content {
    background: linear-gradient(135deg, var(--white), var(--amber-light));
    border-radius: 12px;
    padding: 48px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    animation: slideUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid var(--amber-mid);
    box-shadow: 0 32px 64px rgba(186, 117, 23, 0.3);
    position: relative;
    overflow: hidden;
}

.modal-content::before {
    content: '🎉 🏆 ⭐ 🎮 🌟';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    display: block;
    font-size: 32px;
    letter-spacing: 12px;
    animation: float 1.5s ease-in-out infinite;
}

.modal-content h2 {
    font-family: 'Syne', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: var(--amber);
    margin: 32px 0 12px;
    position: relative;
    z-index: 1;
}

.modal-content .score-display {
    font-size: 64px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--amber-mid), var(--amber-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 24px 0;
    font-family: 'Syne', sans-serif;
    animation: popIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
}

.stats-summary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 24px 0;
}

.stats-summary .stat {
    background: var(--amber-light);
    padding: 12px;
    border-radius: 8px;
    border: 1px solid var(--amber-mid);
    animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stats-summary .stat:nth-child(1) { animation-delay: 0.4s; }
.stats-summary .stat:nth-child(2) { animation-delay: 0.5s; }
.stats-summary .stat:nth-child(3) { animation-delay: 0.6s; }
.stats-summary .stat:nth-child(4) { animation-delay: 0.7s; }

.stats-summary .stat-value {
    font-weight: 700;
    color: var(--amber-dark);
    font-size: 16px;
    font-family: 'Syne', sans-serif;
}

.stats-summary .stat-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
}

/* ============================================
   PLAYER NAME MODAL
   ============================================ */
.name-modal-content h2 {
    margin-top: 32px;
}

.name-modal-text {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.name-input {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    font-family: 'DM Sans', sans-serif;
    border: 2px solid var(--amber-mid);
    border-radius: 8px;
    background: var(--white);
    color: var(--text);
    text-align: center;
    box-sizing: border-box;
}

.name-input:focus {
    outline: none;
    border-color: var(--amber-dark);
    box-shadow: 0 0 0 3px rgba(186, 117, 23, 0.15);
}

/* ============================================
   ACHIEVEMENTS
   ============================================ */
.achievements-list {
    margin: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.achievement {
    background: linear-gradient(135deg, var(--accent), rgba(255, 215, 0, 0.2));
    border: 1px solid var(--accent);
    border-radius: 8px;
    padding: 12px 16px;
    text-align: left;
    animation: achievementUnlock 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    gap: 12px;
    align-items: center;
}

.achievement-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.achievement-text {
    flex: 1;
}

.achievement-name {
    font-weight: 700;
    color: var(--text);
    font-size: 13px;
}

.achievement-desc {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ============================================
   MODAL ACTIONS
   ============================================ */
.modal-actions {
    display: flex;
    gap: 12px;
    margin-top: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.modal-actions .btn {
    flex: 1;
    min-width: 140px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .game-hud {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .stat-box {
        padding: 16px;
    }
    
    .stat-box .value {
        font-size: 24px;
    }
    
    .modal-content {
        padding: 32px;
        border-radius: 16px;
    }
    
    .modal-content h2 {
        font-size: 32px;
    }
    
    .modal-content .score-display {
        font-size: 48px;
    }
    
    .stats-summary {
        grid-template-columns: 1fr;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .modal-actions .btn {
        width: 100%;
    }
    
    .game-controls {
        flex-direction: column;
    }
    
    .game-controls .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .game-hud {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .stat-box {
        padding: 12px;
    }
    
    .stat-box .label {
        font-size: 10px;
    }
    
    .stat-box .value {
        font-size: 20px;
    }
    
    .modal-content {
        padding: 24px;
    }
    
    .modal-content::before {
        font-size: 24px;
        letter-spacing: 8px;
    }
    
    .modal-content h2 {
        font-size: 24px;
        margin: 24px 0 8px;
    }
    
    .modal-content .score-display {
        font-size: 40px;
        margin: 16px 0;
    }
    
    .stats-summary {
        gap: 8px;
    }
    
    .stats-summary .stat {
        padding: 10px;
    }
    
    .stats-summary .stat-value {
        font-size: 14px;
    }
}
