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

body {
    display: grid;
    grid-template-rows: auto 1fr auto;
    min-height: 100vh;
    font-family: 'Google Sans', system-ui, sans-serif;
    background: radial-gradient(circle at 20% -10%, #3e2d80 0%, #1b1630 40%, #0c0f16 100%);
    color: #f6f7ff;
}

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    width: min(980px, 100% - 40px);
    margin: 0 auto;
    padding: 28px 0 30px;
}

.hero {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.kicker {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #b9afff;
}

.hero h1 {
    font-size: clamp(1.9rem, 4vw, 3.1rem);
    line-height: 1.1;
}

.hero p {
    color: #d2d2e8;
    max-width: 62ch;
}

.gamecard {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.06), rgba(121, 95, 255, 0.14));
    color: #f8f8ff;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    min-height: 240px;
    padding: 24px;
    text-align: left;
    backdrop-filter: blur(4px);
}

.heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 10;
    background-color: transparent;
    transition: background-color .2s ease, box-shadow .2s ease;
}

.heading.solid {
    background-color: rgba(12, 15, 22, 0.88);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(8px);
}

a {
    text-decoration: none;
    color: #e8e7ff;
    margin: 0 10px;
}

.heading nav a:hover {
    color: #ffffff;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    margin: 0;
}

.status {
    color: #b8e8ff;
    font-weight: 700;
    letter-spacing: 0.02em;
    font-size: 0.9rem;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid transparent;
    background-color: #ffffff;
    color: #140f26;
    margin: 0;
    font-weight: 700;
}

.button:hover {
    background-color: #f2efff;
}

.button-secondary {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.55);
    color: #ffffff;
}

.button-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
}

.site-footer {
    width: min(980px, 100% - 40px);
    margin: 0 auto;
    padding: 6px 0 26px;
    color: #cbc7ea;
    font-size: 0.9rem;
}

.site-footer p {
    margin: 0;
}

.site-footer p + p {
    margin-top: 6px;
}

.site-footer a {
    margin: 0 10px 0 0;
    color: #ffffff;
}

.tiny-credit {
    font-size: 0.72rem;
    opacity: 0.55;
}

@media (max-width: 680px) {
    .heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .heading nav {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }

    .heading nav a {
        margin: 0;
    }
}