:root {
    --text: #eee8dc;
    --muted: #b8ad9f;
    --copper: #b88755;
    --dark: #080808;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    background: var(--dark);
    color: var(--text);
    font-family: Georgia, "Times New Roman", serif;
}

.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;

    background:
    linear-gradient(
        to bottom,
        rgba(0,0,0,0.15),
                    rgba(0,0,0,0.35)
    ),
    linear-gradient(
        to right,
        rgba(0,0,0,0.45),
                    rgba(0,0,0,0.15),
                    rgba(0,0,0,0.45)
    ),
    url("background.jpg");

    background-size: cover;
    background-position: center;
    display: grid;
    place-items: center;
    padding: 48px 24px;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
    radial-gradient(
        circle at center,
        transparent 0%,
        rgba(0,0,0,0.15) 70%,
                    rgba(0,0,0,0.45) 100%
    );
}

.top-text {
    position: absolute;
    top: 8vh;
    left: 7vw;
    z-index: 1;
}

.kicker {
    margin: 0 0 16px;
    color: var(--copper);
    font-size: clamp(1.1rem, 2vw, 1.8rem);
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.subtitle {
    margin: 0;
    color: var(--muted);
    font-size: clamp(0.85rem, 1.4vw, 1.1rem);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.brand {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-top: 8vh;
    text-shadow: 0 8px 30px rgba(0,0,0,0.8);
}

.logo {
    width: min(36vw, 300px);
    max-width: 300px;
    opacity: 0.92;
    margin-bottom: 24px;
    mix-blend-mode: screen;
    filter:
    drop-shadow(0 0 18px rgba(255,255,255,0.12))
    drop-shadow(0 18px 42px rgba(0,0,0,0.8));
}

h1 {
    margin: 0;
    font-size: clamp(2.5rem, 7vw, 5.8rem);
    font-weight: 400;
    letter-spacing: 0.28em;
    color: var(--text);
}

.games {
    margin: 8px 0 26px;
    color: var(--copper);
    font-size: clamp(1rem, 2.2vw, 1.6rem);
    letter-spacing: 0.55em;
}

.divider {
    width: min(420px, 70vw);
    height: 1px;
    margin: 0 auto 28px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(184, 135, 85, 0.8),
                                transparent
    );
}

.links-title {
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.35em;
    font-size: 0.9rem;
    margin-bottom: 18px;
}

.links {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.links a {
    color: var(--text);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.82rem;

    padding: 12px 20px;
    border: 1px solid rgba(184, 135, 85, 0.45);
    background: rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(6px);
    transition: 160ms ease;
}

.links a:hover {
    border-color: var(--copper);
    background: rgba(184, 135, 85, 0.12);
    transform: translateY(-2px);
}

.mail {
    display: inline-block;
    color: var(--muted);
    text-decoration: none;
    letter-spacing: 0.12em;
    font-size: 0.9rem;
}

.mail:hover {
    color: var(--text);
}

@media (max-width: 700px) {
    .top-text {
        position: relative;
        top: auto;
        left: auto;
        text-align: center;
        margin-bottom: 32px;
    }

    .brand {
        margin-top: 0;
    }

    h1 {
        letter-spacing: 0.16em;
    }

    .games {
        letter-spacing: 0.35em;
    }
}
