/* ===== Betarland — shared site styles =====
   Used by Main / games / support / privacy / terms / contacts pages.
   Page-specific rules remain in each file's <style> block. */

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

html {
    overflow-y: scroll;
}

html, body {
    background-color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    color: #282828;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

/* ===== HEADER ===== */
header {
    padding: 32px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav {
    display: flex;
    gap: 48px;
}

.nav a {
    font-weight: 700;
    font-size: 20px;
    color: #282828;
    text-decoration: none;
    transition: color 0.2s ease, font-weight 0.2s ease;
}

.nav a:hover {
    color: #3B5BD9;
}

.nav a.active,
.footer-nav a.active {
    color: #3B5BD9;
    font-weight: 500;
}

/* ===== FOOTER ===== */
footer {
    padding: 40px 0 32px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 56px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.footer-nav a {
    font-weight: 400;
    font-size: 16px;
    color: #282828;
    text-decoration: none;
    transition: color 0.2s ease, font-weight 0.2s ease;
}

.footer-nav a:hover {
    color: #3B5BD9;
}

.copyright {
    font-weight: 400;
    font-size: 16px;
    color: #818181;
    text-align: center;
}
