:root {
    --ink: #101823;
    --muted: #5b6878;
    --line: #dde7ee;
    --paper: #ffffff;
    --soft: #f3f8fb;
    --field: #fbfdff;
    --green: #14a86b;
    --teal: #087a8a;
    --cyan: #19b8cf;
    --coral: #e55b48;
    --gold: #f1b431;
    --magenta: #c94c86;
    --night: #0d1722;
    --shadow: 0 18px 45px rgba(16, 24, 35, .12);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        linear-gradient(180deg, rgba(25, 184, 207, .06), rgba(255, 255, 255, 0) 360px),
        var(--paper);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.65;
}

img,
iframe {
    max-width: 100%;
}

a {
    color: var(--teal);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 10px;
    z-index: 10;
    background: var(--ink);
    color: #fff;
    padding: 8px 12px;
    border-radius: 4px;
}

.skip-link:focus {
    left: 10px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 5;
    border-bottom: 1px solid rgba(16, 24, 35, .08);
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(14px);
}

.header-inner {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand,
.footer-brand {
    color: var(--ink);
    text-decoration: none;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 215px;
}

.brand:hover,
.footer-brand:hover {
    text-decoration: none;
}

.brand-mark {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--green), var(--cyan) 55%, var(--gold));
    border-radius: var(--radius);
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(20, 168, 107, .28);
}

.brand strong,
.footer-brand {
    display: block;
    font-size: 1.05rem;
    letter-spacing: 0;
}

.brand small {
    display: block;
    color: var(--muted);
    font-size: .78rem;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    flex-wrap: wrap;
}

.site-nav a {
    color: var(--ink);
    padding: 8px 10px;
    border-radius: 6px;
    font-size: .95rem;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
    background: #eaf8fb;
    color: #075965;
    text-decoration: none;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--paper);
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
    display: block;
    width: 20px;
    height: 2px;
    margin: auto;
    background: var(--ink);
    content: "";
}

.nav-toggle-lines::before {
    transform: translateY(-7px);
}

.nav-toggle-lines::after {
    transform: translateY(5px);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hero,
.page-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(118deg, rgba(13, 23, 34, .96) 0%, rgba(8, 90, 103, .92) 48%, rgba(16, 24, 35, .94) 100%),
        url("gaming-pattern.svg") center/520px auto;
    border-bottom: 1px solid rgba(25, 184, 207, .2);
    color: #fff;
}

.hero::before,
.page-hero::before {
    position: absolute;
    inset: auto -120px -240px auto;
    width: 520px;
    height: 520px;
    background:
        radial-gradient(circle, rgba(241, 180, 49, .38), rgba(241, 180, 49, 0) 58%),
        radial-gradient(circle at 30% 30%, rgba(20, 168, 107, .32), rgba(20, 168, 107, 0) 62%);
    content: "";
    pointer-events: none;
}

.hero::after,
.page-hero::after {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, .62), transparent 78%);
    content: "";
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
    min-height: 510px;
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(320px, .97fr);
    align-items: center;
    gap: 44px;
    padding: 56px 0;
}

.page-hero .container {
    position: relative;
    z-index: 1;
    padding: 52px 0 42px;
}

.eyebrow {
    color: var(--green);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .78rem;
    margin: 0 0 8px;
}

.hero .eyebrow,
.page-hero .eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 4px 10px;
    color: #d8ffef;
    background: rgba(20, 168, 107, .16);
    border: 1px solid rgba(20, 168, 107, .35);
    border-radius: 6px;
}

h1,
h2,
h3 {
    line-height: 1.18;
    margin: 0 0 14px;
}

h1 {
    font-size: clamp(2rem, 4vw, 4.2rem);
    max-width: 780px;
}

h2 {
    font-size: clamp(1.45rem, 2.5vw, 2.25rem);
}

h3 {
    font-size: 1.12rem;
}

p {
    margin: 0 0 16px;
}

.lead {
    color: var(--muted);
    font-size: 1.1rem;
    max-width: 720px;
}

.hero .lead,
.page-hero .lead {
    color: rgba(255, 255, 255, .78);
}

.hero-actions,
.button-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 16px;
    border: 1px solid transparent;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--teal), var(--green));
    color: #fff;
    font-weight: 700;
    box-shadow: 0 12px 26px rgba(8, 122, 138, .22);
}

.button:hover {
    text-decoration: none;
    background: linear-gradient(135deg, #075f6c, #108653);
}

.button.secondary {
    background: #fff;
    border-color: rgba(8, 122, 138, .28);
    color: var(--teal);
    box-shadow: none;
}

.hero .button.secondary,
.page-hero .button.secondary {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .28);
    color: #fff;
}

.button.secondary:hover {
    background: #edf8f9;
}

.venue-visual {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--night);
    color: #fff;
    box-shadow: 0 28px 80px rgba(0, 0, 0, .34);
    min-height: 360px;
    border: 1px solid rgba(255, 255, 255, .16);
}

.venue-visual::before {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(13, 23, 34, .05), rgba(13, 23, 34, .72)),
        url("venue-photo.svg") center/cover;
    content: "";
}

.venue-visual::after {
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 6px;
    box-shadow: inset 0 0 42px rgba(25, 184, 207, .2);
    content: "";
    pointer-events: none;
}

.venue-visual figcaption {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    margin: 0;
    color: rgba(255, 255, 255, .9);
    font-size: .93rem;
}

.section {
    padding: 64px 0;
}

.section.alt {
    background:
        linear-gradient(180deg, rgba(243, 248, 251, .94), rgba(255, 249, 235, .62)),
        url("gaming-pattern.svg") center/640px auto;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.grid {
    display: grid;
    gap: 22px;
}

.grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
    position: relative;
    overflow: hidden;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: 0 10px 26px rgba(16, 24, 35, .07);
}

.card::before {
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--cyan), var(--green), var(--gold), var(--coral));
    content: "";
    opacity: .78;
}

.card.accent {
    border-color: rgba(20, 168, 107, .38);
    box-shadow: 0 16px 34px rgba(20, 168, 107, .12);
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 28px;
}

.store-note {
    position: relative;
    overflow: hidden;
    margin-top: 24px;
    padding: 22px 24px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(8, 122, 138, .96), rgba(20, 168, 107, .94)),
        url("gaming-pattern.svg") center/420px auto;
    border-radius: var(--radius);
    box-shadow: 0 18px 42px rgba(8, 122, 138, .2);
}

.store-note::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, .12), transparent 42%);
    content: "";
    pointer-events: none;
}

.store-note h3,
.store-note p {
    position: relative;
    z-index: 1;
}

.store-note h3 {
    margin-bottom: 6px;
}

.store-note p {
    max-width: 820px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .86);
}

.store-note a {
    position: relative;
    z-index: 1;
    display: inline-flex;
    width: fit-content;
    min-height: 38px;
    align-items: center;
    margin-top: 14px;
    padding: 7px 12px;
    color: #075965;
    background: #fff;
    border-radius: 6px;
    font-weight: 700;
}

.store-contact-layout {
    display: grid;
    grid-template-columns: minmax(280px, .95fr) minmax(0, 1.05fr);
    gap: 22px;
    margin: 28px 0 22px;
    align-items: stretch;
}

.store-photo {
    overflow: hidden;
    min-height: 100%;
    margin: 0;
    background: var(--night);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.store-photo img {
    display: block;
    width: 100%;
    height: 330px;
    object-fit: cover;
}

.store-photo figcaption {
    margin: 0;
    padding: 12px 14px;
    color: rgba(255, 255, 255, .82);
    background: #0d1722;
    font-size: .9rem;
}

.store-details {
    box-shadow: var(--shadow);
}

.store-map {
    min-height: 390px;
}

.game-card {
    display: grid;
    grid-template-rows: 210px 1fr;
    overflow: hidden;
    min-height: 100%;
    background: #fff;
    border: 1px solid rgba(16, 24, 35, .1);
    border-radius: var(--radius);
    box-shadow: 0 14px 34px rgba(16, 24, 35, .1);
}

.game-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--night);
}

.game-card > div {
    display: grid;
    align-content: start;
    gap: 8px;
    padding: 20px;
}

.game-card h3 {
    margin-bottom: 2px;
}

.game-card p {
    color: var(--muted);
}

.game-card a {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 36px;
    margin-top: 4px;
    font-weight: 700;
}

.game-tag {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    min-height: 28px;
    padding: 3px 9px;
    color: #075965;
    background: #eaf8fb;
    border: 1px solid rgba(25, 184, 207, .26);
    border-radius: 6px;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.pc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.game-card.wide {
    grid-template-rows: 240px 1fr;
}

.card h2::before,
.card h3::before {
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 28px;
    margin-right: 8px;
    border-radius: 6px;
    background: linear-gradient(135deg, rgba(25, 184, 207, .18), rgba(241, 180, 49, .22));
    color: var(--teal);
    content: "\25C6";
    font-size: .78rem;
    vertical-align: 2px;
}

.stat-list,
.plain-list,
.check-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.stat-list li,
.plain-list li,
.check-list li {
    position: relative;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
}

.check-list li {
    padding-left: 30px;
}

.check-list li::before {
    position: absolute;
    left: 0;
    top: 13px;
    width: 18px;
    height: 18px;
    display: inline-grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--green), var(--cyan));
    border-radius: 5px;
    content: "\2713";
    font-size: .75rem;
    font-weight: 700;
}

.stat-list li:last-child,
.plain-list li:last-child,
.check-list li:last-child {
    border-bottom: 0;
}

.stat-list strong {
    display: block;
    color: var(--ink);
}

.map-frame {
    width: 100%;
    min-height: 330px;
    border: 0;
    border-radius: var(--radius);
    background: var(--soft);
    box-shadow: var(--shadow);
}

.notice,
.success,
.error-box {
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 20px;
}

.notice {
    border: 1px solid rgba(241, 180, 49, .48);
    background: linear-gradient(135deg, #fff9e8, #eefbf6);
    color: #5f4610;
}

.success {
    border: 1px solid #a8d8bd;
    background: #edf8f1;
    color: #164f31;
}

.error-box {
    border: 1px solid #efb4aa;
    background: #fff1ef;
    color: #7a2c1f;
}

form {
    display: grid;
    gap: 16px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

label {
    display: grid;
    gap: 6px;
    font-weight: 700;
}

input,
textarea,
select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--field);
    color: var(--ink);
    font: inherit;
    padding: 11px 12px;
}

input:focus,
textarea:focus,
select:focus {
    outline: 3px solid rgba(25, 184, 207, .18);
    border-color: var(--cyan);
}

textarea {
    min-height: 140px;
    resize: vertical;
}

.form-note {
    color: var(--muted);
    font-size: .92rem;
}

.site-footer {
    background:
        linear-gradient(135deg, rgba(13, 23, 34, .98), rgba(8, 76, 88, .96)),
        url("gaming-pattern.svg") center/560px auto;
    color: rgba(255, 255, 255, .78);
    padding: 46px 0 22px;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(150px, .55fr));
    gap: 28px;
}

.site-footer h2 {
    color: #fff;
    font-size: 1rem;
}

.site-footer a {
    display: block;
    color: rgba(255, 255, 255, .86);
    margin-bottom: 8px;
}

.footer-brand {
    color: #fff;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-bottom {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    font-size: .92rem;
}

@media (max-width: 840px) {
    .header-inner {
        flex-wrap: wrap;
        gap: 12px;
        padding: 12px 0;
    }

    .nav-toggle {
        display: inline-grid;
        place-items: center;
    }

    .site-nav {
        display: none;
        width: 100%;
        align-items: stretch;
        flex-direction: column;
        padding-bottom: 8px;
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        padding: 10px 12px;
    }

    .hero .container,
    .grid.two,
    .grid.three,
    .game-grid,
    .pc-grid,
    .store-contact-layout,
    .footer-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .hero .container {
        min-height: auto;
        padding: 42px 0;
    }
}

@media (max-width: 520px) {
    .container {
        width: min(100% - 24px, 1120px);
    }

    .brand {
        min-width: 0;
    }

    .brand small {
        display: none;
    }

    .section {
        padding: 44px 0;
    }

    .venue-visual {
        min-height: 285px;
    }

    .game-card,
    .game-card.wide {
        grid-template-rows: 185px 1fr;
    }
}
