/* ==============================================
   style.css — Ebanogames
   Estilos globais / reset base
   ============================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: #0b0b0b;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ---- Utilitários ---- */
.text-center { text-align: center; }
.mt-20       { margin-top: 20px; }
.mb-20       { margin-bottom: 20px; }

/* ---- Scrollbar customizada ---- */
::-webkit-scrollbar       { width: 8px; }
::-webkit-scrollbar-track { background: #0b0b0b; }
::-webkit-scrollbar-thumb { background: #2a2a2a; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #ff0000; }

/* ---- Seleção de texto ---- */
::selection {
    background: rgba(255, 0, 0, 0.3);
    color: #fff;
}
