/* =========================================
   0. БАЗА & ШРИФТЫ
   ========================================= */

/* CofoSans Font Setup */
@font-face {
    font-family: 'CofoSans';
    src: url('../assets/fonts/cofo-sans-regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'CofoSans';
    src: url('../assets/fonts/CoFo%20Sans%20Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

/* CSS VARIABLES */
:root {
    --primary-color: #f7f9fc;
    --text-color: #2c3e50;
    --accent-color: #339af0;
    --radius-premium: 24px;
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.05);
    /* Font updated to Inter from Google Fonts for reliability */
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
}

* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-main);
    background-color: #263238;
    overflow: hidden;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

html {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #263238;
    font-family: var(--primary-font);
}

.game-title,
.menu-btn {
    font-family: var(--primary-font);
}