/* main.css - Estilos base y generales */

:root {
    --main-bg: linear-gradient(135deg, #0a0a0a 0%, #1a0000 100%);
    --main-font: 'Roboto', Arial, sans-serif;
    --title-font: 'Anton', Impact, sans-serif;
    --color-accent: #E50914;
    --color-shadow: #6a0000;
    --color-score: #FFD700;
    --color-dark: #111;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html, body {
    width: 100%;
    height: 100%;
    font-family: var(--main-font);
    background: var(--main-bg);
    color: #FFF;
    min-height: 100vh;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    touch-action: none;
    user-select: none;
}

a {
    color: var(--color-accent);
    text-decoration: none;
}

h1, h2, h3 {
    font-family: var(--title-font);
    letter-spacing: 2px;
    color: var(--color-accent);
}

button, .btn {
    font-family: var(--title-font);
    letter-spacing: 1px;
    font-weight: bold;
    outline: none;
    border: none;
}

input, select {
    font-family: var(--main-font);
}
