/**
 * found-tresor.css — Styles dédiés au jeu Trouvé le trésor
 * Styles propres au jeu uniquement — communs dans games.css
 */

/* ── Légende des indices ─────────────────────────────────────────────────────── */
.ft-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    align-items: center;
}
.ft-legend-item {
    font-size: .85rem;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 700;
    min-width: auto;
    height: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    pointer-events: none;
    cursor: default;
}

/* ── Conteneur de la grille ──────────────────────────────────────────────────── */
.ft-grid-wrapper {
    overflow-x: auto;
    padding: 4px;
}

.ft-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 6px;
    background: linear-gradient(135deg, #6b4423 0%, #8b5a2b 100%);
    border-radius: 12px;
    padding: 10px;
    max-width: 520px;
    margin: 0 auto;
    touch-action: manipulation;
    user-select: none;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
}

/* ── Cellule de la grille ────────────────────────────────────────────────────── */
.ft-cell {
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    background: linear-gradient(135deg, #d2a574 0%, #c19560 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: clamp(.95rem, 3.5vw, 1.4rem);
    color: #4a2c14;
    cursor: pointer;
    border: none;
    outline: none;
    transition: transform .12s ease, background .25s ease, box-shadow .2s ease;
    box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.12);
    position: relative;
    line-height: 1;
}
.ft-cell:hover:not(:disabled):not(.ft-revealed) {
    background: linear-gradient(135deg, #e0b283 0%, #d2a574 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.ft-cell:focus-visible {
    outline: 3px solid #ffd54f;
    outline-offset: 2px;
    z-index: 2;
}
.ft-cell.ft-cursor {
    outline: 3px dashed #ffd54f;
    outline-offset: -3px;
}

/* ── États après fouille — couleurs par distance ────────────────────────────── */
.ft-revealed { cursor: default; box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.18); }

.ft-d-0 {
    background: linear-gradient(135deg, #ffd54f 0%, #ffa000 100%) !important;
    color: #4a2c00 !important;
    animation: ft-treasure 0.5s ease;
}
.ft-d-1 { background: #e74c3c !important; color: #fff !important; }
.ft-d-2 { background: #f39c12 !important; color: #fff !important; }
.ft-d-3 { background: #f1c40f !important; color: #4a2c00 !important; }
.ft-d-4,
.ft-d-5,
.ft-d-6,
.ft-d-7 { background: #3498db !important; color: #fff !important; }

/* ── Animation découverte trésor ─────────────────────────────────────────────── */
@keyframes ft-treasure {
    0%   { transform: scale(.6) rotate(-15deg); }
    60%  { transform: scale(1.2) rotate(8deg); }
    100% { transform: scale(1) rotate(0); }
}

/* ── Bandeau de fin de partie ────────────────────────────────────────────────── */
.ft-end-banner {
    border-radius: 12px;
    padding: 16px 18px;
    background: linear-gradient(135deg, rgba(255, 213, 79, 0.18), rgba(255, 160, 0, 0.12));
    border: 1px solid rgba(255, 160, 0, 0.4);
    max-width: 420px;
    margin: 0 auto;
}
.ft-end-banner.ft-lose {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.16), rgba(231, 76, 60, 0.08));
    border-color: rgba(231, 76, 60, 0.45);
}

[data-theme="dark"] .ft-end-banner {
    background: linear-gradient(135deg, rgba(255, 213, 79, 0.10), rgba(255, 160, 0, 0.06));
}
[data-theme="dark"] .ft-end-banner.ft-lose {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.10), rgba(231, 76, 60, 0.05));
}

/* ── Responsive mobile ───────────────────────────────────────────────────────── */
@media (max-width: 480px) {
    .ft-grid { gap: 4px; padding: 6px; max-width: 100%; }
    .ft-cell { font-size: clamp(.8rem, 4vw, 1.1rem); border-radius: 6px; }
    .ft-legend-item { font-size: .75rem; padding: 4px 8px; }
}
