/* =============================================
   games.css — спільні стилі для всіх ігор
   notperfect.pl/games/
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=DM+Mono:wght@400;500&display=swap');

:root {
    --bg:       #0f0f13;
    --surface:  #1a1a22;
    --border:   #2a2a38;
    --accent:   #7c6af7;
    --accent2:  #f7a26a;
    --text:     #e8e8f0;
    --muted:    #6b6b80;
    --green:    #4ae263;
    --yellow:   #f1c40f;
    --red:      #ff4d4d;
    --shadow:   0 4px 20px rgba(0,0,0,0.4);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 16px;
}

/* =============================================
   КНОПКА ПОВЕРНЕННЯ — по центру вгорі
   ============================================= */
.back-link {
    display: block;
    text-align: center;
    color: var(--muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 16px;
    margin-bottom: 12px;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: var(--surface);
    transition: all 0.2s;
    align-self: center;
}
.back-link:hover {
    color: var(--accent);
    border-color: var(--accent);
    background: rgba(124,106,247,0.08);
}

/* =============================================
   ЗАГОЛОВОК ГРИ
   ============================================= */
.game-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text);
    text-align: center;
}

/* =============================================
   ЗАГАЛЬНІ КНОПКИ
   ============================================= */
.btn-game {
    padding: 9px 20px;
    background: var(--surface);
    color: var(--text);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: all 0.15s;
}
.btn-game:hover {
    border-color: var(--accent);
    color: var(--accent);
}
.btn-game.primary {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}
.btn-game.primary:hover {
    background: #6a5ae0;
}

/* =============================================
   СТАТИСТИКА / ЛІЧИЛЬНИКИ
   ============================================= */
.game-stats {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 10px 20px;
}
.stat-item {
    text-align: center;
    font-family: 'DM Mono', monospace;
}
.stat-label {
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.stat-value {
    font-size: 22px;
    font-weight: 600;
    color: var(--yellow);
    line-height: 1.2;
}

/* =============================================
   ПОВІДОМЛЕННЯ / СТАТУС
   ============================================= */
.game-message {
    font-size: 16px;
    font-weight: 500;
    min-height: 24px;
    text-align: center;
    color: var(--green);
}
.game-message.error { color: var(--red); }
.game-message.win   { color: var(--accent2); }
