:root {
    --ink: #102826;
    --ink-soft: #3a524f;
    --teal: #0f4a48;
    --teal-deep: #0a3433;
    --sage: #9aab7a;
    --sage-bright: #b8c792;
    --cream: #f3efe6;
    --sand: #e7e0d2;
    --amber: #c9853a;
    --amber-deep: #a66a28;
    --line: rgba(15, 74, 72, 0.14);
    --paper: #fffdf8;
    --danger: #b42318;
    --ok: #1f7a4c;
    --rail: 1200px;
    --radius: 18px;
    --shadow: 0 18px 40px rgba(16, 40, 38, 0.12);
    --font-display: "Fraunces", Georgia, serif;
    --font-body: "Manrope", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background:
        radial-gradient(circle at 12% 8%, rgba(154, 171, 122, 0.18), transparent 36%),
        radial-gradient(circle at 88% 0%, rgba(201, 133, 58, 0.12), transparent 28%),
        linear-gradient(180deg, #f7f3ea 0%, #efe8da 48%, #f4f0e7 100%);
    min-height: 100vh;
    line-height: 1.65;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--teal);
    text-decoration: none;
}

a:hover {
    color: var(--amber-deep);
}

.vc-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.vc-rail {
    width: min(100% - 32px, var(--rail));
    margin: 0 auto;
}

.vc-top {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(12px);
    background: rgba(255, 253, 248, 0.88);
    border-bottom: 1px solid var(--line);
}

.vc-top .vc-rail {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 84px;
}

.vc-brand img {
    width: 168px;
    height: auto;
}

.vc-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px;
    margin-left: auto;
}

.vc-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--ink-soft);
    font-weight: 600;
    font-size: 0.92rem;
    transition: 0.2s ease;
}

.vc-nav-link:hover,
.vc-nav-link.is-active {
    background: rgba(15, 74, 72, 0.08);
    color: var(--teal-deep);
}

.vc-nav-link.is-shop {
    background: linear-gradient(135deg, var(--amber), var(--amber-deep));
    color: #fff;
    box-shadow: 0 10px 24px rgba(166, 106, 40, 0.28);
    padding: 11px 18px;
    font-weight: 800;
}

.vc-nav-link.is-shop:hover,
.vc-nav-link.is-shop.is-active {
    background: linear-gradient(135deg, #d49545, #8f5a20);
    color: #fff;
}

.view-home .vc-nav-link.is-active { box-shadow: inset 0 -2px 0 var(--sage); border-radius: 0; background: transparent; }
.view-about .vc-nav-link.is-active { background: rgba(15, 74, 72, 0.12); border-radius: 10px; }
.view-game .vc-nav-link.is-active { background: rgba(201, 133, 58, 0.16); color: var(--amber-deep); }
.view-contact .vc-nav-link.is-active { outline: 1px solid rgba(15, 74, 72, 0.25); background: #fff; }
.view-shop .vc-nav-link.is-shop { transform: scale(1.04); }

.vc-nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--paper);
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
}

.vc-nav-toggle span {
    display: block;
    height: 2px;
    background: var(--teal);
    border-radius: 2px;
}

.vc-main {
    flex: 1;
    padding: 28px 0 64px;
}

.vc-foot {
    background: linear-gradient(180deg, #0f3d3d, #0a2c2b);
    color: rgba(255, 255, 255, 0.86);
    padding: 42px 0 24px;
    margin-top: auto;
}

.vc-foot a {
    color: rgba(255, 255, 255, 0.86);
}

.vc-foot a:hover {
    color: var(--sage-bright);
}

.vc-foot-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 24px 40px;
    align-items: start;
}

.vc-foot-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    align-content: flex-start;
}

.vc-foot-meta {
    text-align: right;
}

.vc-foot-meta p {
    margin: 0 0 10px;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    align-items: flex-start;
}

.vc-foot-meta i {
    margin-top: 4px;
    color: var(--sage-bright);
}

.vc-foot-copy {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.9rem;
    opacity: 0.8;
    text-align: center;
}

.masthead {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    min-height: 420px;
    display: grid;
    align-items: end;
    background: #123f3d center/cover no-repeat;
    box-shadow: var(--shadow);
}

.masthead::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 32, 31, 0.82) 0%, rgba(8, 32, 31, 0.45) 55%, rgba(8, 32, 31, 0.2) 100%);
}

.masthead-copy {
    position: relative;
    z-index: 1;
    padding: 42px 40px;
    color: #fff;
    max-width: 640px;
}

.masthead-copy h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.15;
    margin: 0 0 14px;
}

.masthead-copy p {
    margin: 0 0 22px;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
}

.eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--teal-deep);
    color: #f7f3ea;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.masthead-copy .eyebrow {
    background: rgba(247, 243, 234, 0.92);
    color: var(--teal-deep);
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.store-btn img {
    width: 148px;
    height: auto;
    transition: transform 0.2s ease;
}

.store-btn:hover img {
    transform: translateY(-2px) scale(1.02);
}

.store-btn-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 148px;
    min-height: 50px;
    padding: 10px 14px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--amber), var(--amber-deep));
    color: #fff;
    font-weight: 800;
    font-size: 0.92rem;
    box-shadow: 0 8px 18px rgba(166, 106, 40, 0.22);
}

.store-btn:hover .store-btn-text {
    color: #fff;
    filter: brightness(1.05);
}

.home-ready {
    margin-top: 28px;
    padding: 22px 24px;
    background: rgba(255, 253, 248, 0.92);
    border: 1px solid var(--line);
    border-radius: 20px;
}

.home-manage {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 22px;
    align-items: center;
    margin-top: 28px;
    padding: 20px;
    background: rgba(255, 253, 248, 0.7);
    border: 1px solid var(--line);
    border-radius: 24px;
}

.home-shot {
    width: 100%;
    max-width: 200px;
    aspect-ratio: 9 / 16;
    max-height: 320px;
    margin: 0;
}

.home-shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.home-manage-copy {
    box-shadow: none;
    border: 0;
    background: transparent;
    padding: 4px 4px 4px 0;
}

.home-fans {
    margin-top: 36px;
}

.home-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 28px;
}

.home-gallery img {
    width: 100%;
    aspect-ratio: 9 / 16;
    max-height: 300px;
    object-fit: cover;
    object-position: top center;
    border-radius: 14px;
    box-shadow: var(--shadow);
    background: #123;
}

.home-brand {
    margin-top: 28px;
    display: grid;
    grid-template-columns: 1.3fr auto;
    gap: 18px;
    align-items: center;
}

.btn-solid,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 700;
    border: 0;
    cursor: pointer;
}

.btn-solid {
    background: linear-gradient(135deg, var(--amber), var(--amber-deep));
    color: #fff;
}

.btn-solid:hover {
    color: #fff;
    filter: brightness(1.05);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.btn-ghost.dark {
    background: transparent;
    color: var(--teal);
    border-color: rgba(15, 74, 72, 0.24);
}

.section-block {
    margin-top: 42px;
}

.section-head {
    margin-bottom: 22px;
}

.section-head h2,
.page-title,
.panel-title {
    font-family: var(--font-display);
    color: var(--teal-deep);
    margin: 0 0 10px;
    line-height: 1.2;
}

.section-head p,
.lead-text {
    margin: 0;
    color: var(--ink-soft);
    max-width: 720px;
}

.split-board {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
    align-items: center;
}

.media-frame {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #123;
}

.media-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.soft-card {
    background: rgba(255, 253, 248, 0.92);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
}

.feature-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.feature-item {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 22px;
}

.feature-item i {
    color: var(--amber-deep);
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.feature-item h3 {
    margin: 0 0 8px;
    font-size: 1.05rem;
    color: var(--teal-deep);
}

.feature-item p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.95rem;
}

.gallery-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.gallery-row img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: var(--shadow);
}

.page-banner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    align-items: center;
    background: linear-gradient(135deg, rgba(15, 74, 72, 0.08), rgba(154, 171, 122, 0.16));
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 28px;
    margin-bottom: 28px;
}

.page-banner img {
    border-radius: 16px;
    width: 100%;
    max-height: 280px;
    object-fit: cover;
}

.game-banner {
    grid-template-columns: 1.35fr 0.65fr;
}

.game-banner .store-btn img,
.game-cta .store-btn img {
    width: 120px;
}

.game-lead {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
    align-items: center;
    background: linear-gradient(135deg, rgba(15, 74, 72, 0.08), rgba(154, 171, 122, 0.16));
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 28px;
    margin-bottom: 8px;
}

.game-lead-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.game-lead-logo {
    width: 132px;
    height: 132px;
    object-fit: contain;
    border-radius: 24px;
    box-shadow: var(--shadow);
    background: #fff;
    flex-shrink: 0;
}

.game-lead-phone {
    max-width: 168px;
    max-height: 300px;
    margin: 0;
}

.game-logo-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.game-logo-wrap img {
    width: 180px;
    height: 180px;
    max-height: none;
    object-fit: contain;
    border-radius: 28px;
    box-shadow: var(--shadow);
    background: #fff;
}

.game-play-split {
    grid-template-columns: 0.72fr 1.28fr;
    align-items: stretch;
}

.game-ways {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 22px;
    align-items: center;
}

.game-ways-copy {
    margin: 0;
}

.game-ways-sub {
    margin: 18px 0 8px;
    font-size: 1.05rem;
    color: var(--teal-deep);
}

.game-ways-phones {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.game-shot {
    width: 100%;
    max-width: 180px;
    margin: 0;
    aspect-ratio: 9 / 16;
    max-height: 320px;
}

.game-shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.game-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.game-gallery figure {
    margin: 0;
    text-align: center;
}

.game-gallery img {
    width: 100%;
    aspect-ratio: 9 / 16;
    max-height: 300px;
    object-fit: cover;
    object-position: top center;
    border-radius: 16px;
    box-shadow: var(--shadow);
    background: #123;
}

.game-gallery figcaption {
    margin-top: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--ink-soft);
}

.about-stack {
    display: grid;
    gap: 20px;
}

.about-lead {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 24px;
    align-items: center;
    background: linear-gradient(135deg, rgba(15, 74, 72, 0.08), rgba(154, 171, 122, 0.16));
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 28px 32px;
    margin-bottom: 24px;
}

.about-lead-icon {
    display: flex;
    justify-content: center;
}

.about-lead-icon img {
    width: 148px;
    height: 148px;
    object-fit: contain;
    border-radius: 28px;
    box-shadow: var(--shadow);
    background: #fff;
}

.about-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 24px;
}

.about-publish {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 22px;
    align-items: center;
    background: rgba(255, 253, 248, 0.7);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 20px;
}

.about-shot {
    width: 100%;
    max-width: 220px;
    margin: 0;
    aspect-ratio: 9 / 16;
    max-height: 340px;
}

.about-shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.about-publish-copy {
    box-shadow: none;
    border: 0;
    background: transparent;
    padding: 8px 8px 8px 0;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
}

.info-list li {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px dashed var(--line);
}

.info-list i {
    color: var(--sage);
    width: 22px;
    text-align: center;
    margin-top: 3px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 24px;
}

.contact-card {
    background: var(--paper);
    border-radius: var(--radius);
    border: 1px solid var(--line);
    padding: 26px;
    box-shadow: var(--shadow);
}

.contact-card h2 {
    font-family: var(--font-display);
    margin: 0 0 8px;
}

.contact-points {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.contact-point {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px;
    border-radius: 14px;
    background: rgba(15, 74, 72, 0.05);
}

.contact-point i {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--teal);
    color: #fff;
    flex-shrink: 0;
}

.shop-intro {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: end;
    margin-bottom: 22px;
}

.shop-notes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.shop-notes li {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 16px;
    display: flex;
    gap: 12px;
}

.shop-notes i {
    color: var(--amber-deep);
    margin-top: 3px;
}

.currency-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    background: rgba(15, 74, 72, 0.06);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 12px 16px;
    margin-bottom: 20px;
}

.currency-switcher {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.currency-btn {
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 999px;
    padding: 8px 14px;
    cursor: pointer;
    font-weight: 700;
    color: var(--ink-soft);
}

.currency-btn.is-active {
    background: var(--teal);
    color: #fff;
    border-color: var(--teal);
}

.shop-board {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 22px;
    align-items: start;
}

.points-panel,
.order-panel {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--shadow);
}

.points-panel h2,
.order-panel h2 {
    margin: 0 0 16px;
    font-family: var(--font-display);
    font-size: 1.35rem;
}

.points-list {
    display: grid;
    gap: 10px;
    max-height: 520px;
    overflow: auto;
    padding-right: 4px;
}

.points-row {
    width: 100%;
    border: 1px solid var(--line);
    background: linear-gradient(90deg, #fff, #f7f4ec);
    border-radius: 14px;
    padding: 12px 14px;
    display: grid;
    grid-template-columns: 48px 1fr auto;
    gap: 12px;
    align-items: center;
    cursor: pointer;
    text-align: left;
    transition: 0.18s ease;
}

.points-row:hover,
.points-row.is-selected {
    border-color: rgba(201, 133, 58, 0.55);
    box-shadow: 0 10px 20px rgba(166, 106, 40, 0.12);
    transform: translateX(4px);
}

.points-row.is-selected {
    background: linear-gradient(90deg, rgba(201, 133, 58, 0.12), #fff);
}

.points-row img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.points-row strong {
    display: block;
    color: var(--teal-deep);
}

.points-row span.price {
    font-weight: 800;
    color: var(--amber-deep);
    font-size: 1.05rem;
}

.points-loading,
.points-empty {
    padding: 28px 12px;
    text-align: center;
    color: var(--ink-soft);
}

.shop-alert {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: #fef3f2;
    color: var(--danger);
    border: 1px solid #fecdca;
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 16px;
}

.field-group {
    margin-bottom: 14px;
}

.field-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--teal-deep);
    font-size: 0.92rem;
}

.field-group input[type="text"],
.field-group input[type="email"] {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px 14px;
    font: inherit;
    background: #fff;
}

.field-group input[readonly] {
    background: #f4f1ea;
    color: var(--ink-soft);
}

.required {
    color: var(--danger);
}

.field-error {
    display: block;
    min-height: 18px;
    color: var(--danger);
    font-size: 0.85rem;
    margin-top: 4px;
}

.pay-list {
    display: grid;
    gap: 8px;
}

.pay-option {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 11px 12px;
    cursor: pointer;
    background: #fff;
}

.pay-option.is-selected {
    border-color: var(--teal);
    background: rgba(15, 74, 72, 0.06);
}

.pay-option input {
    margin: 0;
}

.agree-row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.92rem;
}

.agree-row input {
    margin-top: 4px;
}

.order-submit {
    width: 100%;
    margin-top: 8px;
    border: 0;
    border-radius: 14px;
    padding: 14px 16px;
    background: linear-gradient(135deg, var(--amber), var(--amber-deep));
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
}

.order-submit:hover {
    filter: brightness(1.05);
}

.selected-box {
    border: 1px dashed rgba(15, 74, 72, 0.25);
    border-radius: 12px;
    padding: 12px;
    background: rgba(15, 74, 72, 0.04);
    color: var(--ink-soft);
}

.selected-box.has-value {
    color: var(--teal-deep);
    font-weight: 700;
}

.tx-stage {
    max-width: 720px;
    margin: 20px auto 0;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow);
}

.tx-stage h1 {
    font-family: var(--font-display);
    margin: 12px 0;
}

.tx-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 2rem;
}

.tx-icon.ok {
    background: rgba(31, 122, 76, 0.12);
    color: var(--ok);
}

.tx-icon.fail {
    background: rgba(180, 35, 24, 0.12);
    color: var(--danger);
}

.tx-icon.info {
    background: rgba(15, 74, 72, 0.1);
    color: var(--teal);
}

.order-sheet {
    margin: 22px 0;
    text-align: left;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.order-sheet .row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px dashed var(--line);
}

.order-sheet .row:last-child {
    border-bottom: 0;
}

.order-sheet .label {
    color: var(--ink-soft);
}

.order-sheet .value {
    font-weight: 700;
    color: var(--teal-deep);
    text-align: right;
}

.order-sheet .value.total {
    color: var(--amber-deep);
    font-size: 1.15rem;
}

.countdown {
    font-family: var(--font-display);
    font-size: 2.4rem;
    color: var(--teal);
    margin: 8px 0 16px;
}

.game-role {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.faq-block details {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 10px;
}

.faq-block summary {
    cursor: pointer;
    font-weight: 700;
    color: var(--teal-deep);
}

.closing-band {
    margin-top: 42px;
    border-radius: 24px;
    padding: 34px;
    background: linear-gradient(135deg, var(--teal-deep), #165c59);
    color: #fff;
    text-align: center;
}

.closing-band h2 {
    font-family: var(--font-display);
    margin: 0 0 10px;
}

.closing-band p {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 980px) {
    .split-board,
    .page-banner,
    .contact-layout,
    .shop-board,
    .vc-foot-grid,
    .feature-strip,
    .shop-notes,
    .game-role,
    .game-play-split,
    .game-lead,
    .game-ways,
    .about-lead,
    .about-duo,
    .about-publish,
    .home-manage,
    .home-brand {
        grid-template-columns: 1fr;
    }

    .vc-foot-meta {
        text-align: left;
    }

    .vc-foot-meta p {
        justify-content: flex-start;
    }

    .home-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-manage-copy,
    .home-brand {
        text-align: center;
    }

    .home-manage-copy .cta-row,
    .home-brand .cta-row {
        justify-content: center;
    }

    .about-lead-icon img {
        width: 120px;
        height: 120px;
    }

    .about-shot {
        max-width: 200px;
        max-height: 300px;
        margin: 0 auto;
    }

    .about-publish-copy {
        padding: 8px 0 0;
        text-align: center;
    }

    .about-publish-copy .cta-row {
        justify-content: center;
    }

    .game-lead-visual {
        order: -1;
    }

    .game-lead-logo {
        width: 110px;
        height: 110px;
    }

    .game-cta .store-btn img {
        width: 110px;
    }

    .game-ways-phones {
        order: -1;
    }

    .game-shot {
        max-width: 160px;
        max-height: 280px;
    }

    .game-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .game-gallery img {
        max-height: 280px;
    }

    .gallery-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .vc-nav-toggle {
        display: inline-flex;
    }

    .vc-nav {
        display: none;
        position: absolute;
        top: 84px;
        left: 16px;
        right: 16px;
        background: var(--paper);
        border: 1px solid var(--line);
        border-radius: 16px;
        padding: 12px;
        flex-direction: column;
        align-items: stretch;
        box-shadow: var(--shadow);
    }

    .vc-nav.is-open {
        display: flex;
    }

    .vc-top .vc-rail {
        position: relative;
    }

    .masthead-copy {
        padding: 28px 22px;
    }
}

@media (max-width: 640px) {
    .gallery-row,
    .game-gallery,
    .home-gallery {
        grid-template-columns: 1fr 1fr;
    }

    .game-gallery img,
    .home-gallery img {
        max-height: 280px;
    }

    .shop-intro {
        grid-template-columns: 1fr;
    }

    .store-btn img,
    .store-btn-text {
        width: 132px;
    }

    .store-btn-text {
        min-height: 46px;
        font-size: 0.86rem;
    }
}
