:root {
    --bg: #24003f;
    --bg-deep: #16002b;
    --bg-soft: #2d0052;
    --bg-mid: #3b006b;
    --bg-bright: #4a007f;
    --cyan: #25dff5;
    --pink: #f06bea;
    --title: #bfffff;
    --text: #ffffff;
    --muted: #d8c7ff;
    --subtle: #b99ee8;
    --card: rgba(60, 0, 100, 0.56);
    --line: rgba(191, 255, 255, 0.14);
    --shadow: 0 18px 46px rgba(0, 0, 0, 0.32);
    --gradient: linear-gradient(90deg, #21dff5 0%, #8f7bff 52%, #f06bea 100%);
    --max: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--text);
    background:
        radial-gradient(circle at 12% 10%, rgba(37, 223, 245, 0.10), transparent 28rem),
        radial-gradient(circle at 88% 24%, rgba(240, 107, 234, 0.13), transparent 31rem),
        linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
    font-family: "Microsoft YaHei", "PingFang SC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}

body.drawer-open {
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    font: inherit;
}

h1,
h2,
h3,
.section-title {
    margin-top: 0;
    color: var(--title);
    line-height: 1.2;
    text-shadow: 0 0 18px rgba(37, 223, 245, 0.20);
}

h1 {
    margin-bottom: 1rem;
    font-size: clamp(2.5rem, 6vw, 5.6rem);
    letter-spacing: -0.04em;
}

h2 {
    margin-bottom: 0.9rem;
    font-size: clamp(1.8rem, 3.6vw, 3.2rem);
}

h3 {
    margin-bottom: 0.55rem;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
}

p {
    margin-top: 0;
    color: var(--muted);
}

.section-shell {
    width: min(calc(100% - 36px), var(--max));
    margin-inline: auto;
}

.site-main {
    position: relative;
    z-index: 2;
}

.content-section {
    padding-block: clamp(68px, 8vw, 108px);
}

.section-heading {
    max-width: 820px;
    margin-bottom: 32px;
}

.section-heading.centered {
    margin-inline: auto;
    text-align: center;
}

.section-heading p {
    max-width: 720px;
    margin-bottom: 0;
}

.section-heading.centered p {
    margin-inline: auto;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 13px;
    color: var(--cyan);
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 26px;
    height: 1px;
    content: "";
    background: var(--gradient);
    box-shadow: 0 0 12px rgba(37, 223, 245, 0.5);
}

.main-btn {
    display: inline-flex;
    min-height: 45px;
    align-items: center;
    justify-content: center;
    padding: 0.72rem 1.2rem;
    color: #fff;
    border: 0;
    border-radius: 6px;
    background: linear-gradient(90deg, #21dff5 0%, #8f7bff 52%, #f06bea 100%);
    box-shadow: 0 14px 30px rgba(240, 107, 234, 0.26);
    font-weight: 800;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.main-btn:hover,
.main-btn:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(37, 223, 245, 0.30);
    filter: saturate(1.08);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--cyan);
    font-weight: 800;
    transition: color 0.2s ease, transform 0.2s ease;
}

.text-link::after {
    content: "→";
}

.text-link:hover,
.text-link:focus-visible {
    color: var(--pink);
    transform: translateX(2px);
}

.card,
.zone-card,
.info-card,
.review-card,
.faq-item,
.prose-panel,
.split-panel,
.accent-panel,
.notice-panel,
.game-card,
.news-card,
.highlight-card {
    background: rgba(60, 0, 100, 0.56);
    border: 1px solid rgba(191, 255, 255, 0.14);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(10px);
}

.content-img,
.zone-card img,
.app-section img,
.hero-visual img,
.poster-banner img,
.inner-hero-visual img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.emoji-field {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.emoji-field span {
    position: absolute;
    left: var(--x);
    bottom: -12vh;
    opacity: 0;
    font-size: clamp(1.1rem, 2.4vw, 2.1rem);
    filter: drop-shadow(0 0 9px rgba(37, 223, 245, 0.34));
    animation: floatEmoji var(--duration) linear infinite;
    animation-delay: var(--delay);
}

@keyframes floatEmoji {
    0% { transform: translate3d(0, 14vh, 0) rotate(-10deg); opacity: 0; }
    10% { opacity: 0.20; }
    48% { transform: translate3d(28px, -44vh, 0) rotate(12deg); opacity: 0.15; }
    80% { opacity: 0.19; }
    100% { transform: translate3d(-18px, -116vh, 0) rotate(-8deg); opacity: 0; }
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 9000;
    border-bottom: 1px solid rgba(191, 255, 255, 0.12);
    background: rgba(36, 0, 63, 0.72);
    box-shadow: 0 9px 28px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: grid;
    width: min(calc(100% - 32px), 1280px);
    min-height: 78px;
    margin-inline: auto;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
}

.brand img,
.drawer-brand img,
.footer-brand img {
    width: auto;
    max-width: 190px;
    height: 48px;
    object-fit: contain;
}

.desktop-nav {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 1.8vw, 26px);
    white-space: nowrap;
}

.desktop-nav a {
    position: relative;
    color: #fff;
    font-size: 0.93rem;
    font-weight: 700;
    transition: color 0.2s ease;
}

.desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 2px;
    content: "";
    transform: scaleX(0);
    background: var(--gradient);
    box-shadow: 0 0 10px rgba(37, 223, 245, 0.5);
    transition: transform 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.desktop-nav a[aria-current="page"] {
    color: var(--title);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after,
.desktop-nav a[aria-current="page"]::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-cta {
    min-height: 40px;
    padding-inline: 1rem;
    font-size: 0.88rem;
}

.menu-toggle,
.drawer-close {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(191, 255, 255, 0.20);
    border-radius: 9px;
    color: #fff;
    background: rgba(45, 0, 82, 0.85);
    cursor: pointer;
}

.menu-toggle {
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 3px;
    background: #fff;
    box-shadow: 0 0 8px rgba(37, 223, 245, 0.65);
}

.drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    opacity: 0;
    background: rgba(10, 0, 22, 0.70);
    backdrop-filter: blur(3px);
    transition: opacity 0.24s ease;
}

.drawer-overlay.is-visible {
    opacity: 1;
}

.side-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 10010;
    display: flex;
    width: min(88vw, 390px);
    padding: 20px;
    transform: translateX(104%);
    flex-direction: column;
    overflow-y: auto;
    border-left: 1px solid rgba(191, 255, 255, 0.18);
    background:
        radial-gradient(circle at 100% 0%, rgba(240, 107, 234, 0.16), transparent 20rem),
        #1d0037;
    box-shadow: -28px 0 80px rgba(0, 0, 0, 0.45);
    transition: transform 0.28s ease;
}

.side-drawer.is-open {
    transform: translateX(0);
}

.drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(191, 255, 255, 0.12);
}

.drawer-close {
    flex: 0 0 auto;
    font-size: 1.8rem;
    line-height: 1;
}

.drawer-nav {
    display: grid;
    padding-block: 18px;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.drawer-nav a {
    padding: 0.72rem 0.78rem;
    border: 1px solid transparent;
    border-radius: 8px;
    color: var(--muted);
    background: rgba(75, 0, 127, 0.18);
    font-weight: 700;
}

.drawer-nav a:hover,
.drawer-nav a:focus-visible {
    border-color: rgba(37, 223, 245, 0.22);
    color: var(--title);
    background: rgba(75, 0, 127, 0.48);
}

.drawer-foot {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(191, 255, 255, 0.12);
}

.drawer-foot p {
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.hero {
    position: relative;
    display: flex;
    min-height: min(900px, calc(100vh - 78px));
    align-items: center;
    isolation: isolate;
    overflow: hidden;
    background-image:
        linear-gradient(90deg, rgba(19, 0, 39, 0.91) 0%, rgba(36, 0, 63, 0.76) 48%, rgba(26, 0, 50, 0.42) 100%),
        url('背景.webp');
    background-position: center;
    background-size: cover;
}

.hero::after {
    position: absolute;
    right: 0;
    bottom: -2px;
    left: 0;
    z-index: -1;
    height: 38%;
    content: "";
    background: linear-gradient(180deg, transparent 0%, rgba(98, 0, 156, 0.54) 55%, var(--bg) 100%);
}

.hero-inner {
    display: grid;
    width: min(calc(100% - 36px), var(--max));
    margin-inline: auto;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
    align-items: center;
    gap: clamp(30px, 6vw, 76px);
    padding-block: clamp(76px, 11vw, 132px);
}

.hero-copy {
    max-width: 720px;
}

.hero-lead {
    max-width: 700px;
    margin-bottom: 28px;
    color: #efe7ff;
    font-size: clamp(1rem, 1.7vw, 1.18rem);
}

.hero-subtitle {
    margin-bottom: 13px;
    color: var(--cyan);
    font-weight: 800;
    letter-spacing: 0.08em;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
}

.hero-visual {
    position: relative;
}

.hero-visual::before {
    position: absolute;
    inset: 10% 9%;
    z-index: -1;
    content: "";
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 223, 245, 0.27), rgba(240, 107, 234, 0.12) 45%, transparent 70%);
    filter: blur(22px);
}

.hero-visual img {
    width: 100%;
    max-height: 560px;
    filter: drop-shadow(0 30px 55px rgba(0, 0, 0, 0.46));
    animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-13px); }
}

.service-strip {
    position: relative;
    z-index: 3;
    margin-top: -34px;
}

.service-strip-grid {
    display: grid;
    padding: 14px;
    border: 1px solid rgba(191, 255, 255, 0.16);
    border-radius: 18px;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(22, 0, 43, 0.84);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34), inset 0 0 35px rgba(37, 223, 245, 0.04);
    backdrop-filter: blur(18px);
}

.service-item {
    padding: 18px 20px;
    border-right: 1px solid rgba(191, 255, 255, 0.10);
}

.service-item:last-child {
    border-right: 0;
}

.service-item strong {
    display: block;
    margin-bottom: 4px;
    color: var(--title);
    font-size: 1rem;
}

.service-item p {
    margin-bottom: 0;
    color: var(--subtle);
    font-size: 0.88rem;
    line-height: 1.6;
}

.capsule-wrap {
    padding-top: 56px;
}

.capsule-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.capsule-nav a {
    padding: 0.58rem 0.9rem;
    border: 1px solid rgba(191, 255, 255, 0.15);
    border-radius: 999px;
    color: var(--muted);
    background: rgba(45, 0, 82, 0.48);
    font-size: 0.9rem;
    font-weight: 700;
    transition: 0.2s ease;
}

.capsule-nav a:hover,
.capsule-nav a:focus-visible {
    border-color: rgba(37, 223, 245, 0.40);
    color: var(--title);
    box-shadow: 0 0 22px rgba(37, 223, 245, 0.10);
}

.brand-split,
.app-split,
.theme-split,
.activity-grid,
.support-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
    align-items: center;
    gap: clamp(34px, 6vw, 76px);
}

.brand-visual,
.app-visual,
.theme-visual {
    position: relative;
    padding: clamp(18px, 3vw, 34px);
    border: 1px solid var(--line);
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(74, 0, 127, 0.46), rgba(22, 0, 43, 0.76));
    box-shadow: var(--shadow);
}

.brand-visual img,
.app-visual img,
.theme-visual img {
    width: 100%;
    max-height: 520px;
    object-fit: contain;
}

.brand-copy p,
.app-copy p,
.theme-copy p {
    font-size: 1.02rem;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.zone-card {
    position: relative;
    min-height: 220px;
    padding: 25px;
    overflow: hidden;
    border-radius: 16px;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.zone-card::after {
    position: absolute;
    right: -60px;
    bottom: -80px;
    width: 150px;
    height: 150px;
    content: "";
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240, 107, 234, 0.18), transparent 70%);
}

.zone-card:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 223, 245, 0.31);
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.37), 0 0 30px rgba(37, 223, 245, 0.08);
}

.card-number {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--cyan);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.15em;
}

.zone-card p,
.info-card p {
    margin-bottom: 16px;
    color: var(--subtle);
    font-size: 0.93rem;
}

.poster-banner {
    padding-block: 22px 74px;
}

.poster-banner figure {
    width: min(100%, 1040px);
    margin: 0 auto;
    padding: 8px;
    border: 1px solid rgba(191, 255, 255, 0.15);
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(37, 223, 245, 0.08), rgba(240, 107, 234, 0.11));
    box-shadow: 0 25px 75px rgba(0, 0, 0, 0.38);
}

.poster-banner img {
    width: 100%;
    border-radius: 17px;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.game-card {
    overflow: hidden;
    border-radius: 14px;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: rgba(37, 223, 245, 0.32);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.42), 0 0 30px rgba(143, 123, 255, 0.12);
}

.game-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: #22003f;
}

.game-card-body {
    padding: 16px;
}

.game-card-body p {
    min-height: 70px;
    margin-bottom: 11px;
    color: var(--subtle);
    font-size: 0.84rem;
    line-height: 1.58;
}

.theme-points,
.app-points,
.support-points {
    display: grid;
    margin: 25px 0 0;
    padding: 0;
    grid-template-columns: 1fr 1fr;
    gap: 11px;
    list-style: none;
}

.theme-points li,
.app-points li,
.support-points li {
    padding: 12px 14px;
    border: 1px solid rgba(191, 255, 255, 0.12);
    border-radius: 10px;
    color: var(--muted);
    background: rgba(45, 0, 82, 0.52);
}

.guide-grid,
.news-grid,
.feature-grid,
.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 17px;
}

.info-card,
.news-card,
.highlight-card {
    padding: 25px;
    border-radius: 16px;
}

.info-card {
    min-height: 218px;
}

.activity-grid {
    align-items: stretch;
    grid-template-columns: 1fr 1fr;
}

.activity-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--card);
    box-shadow: var(--shadow);
}

.activity-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: var(--bg-deep);
}

.activity-card-body {
    padding: 24px;
}

.activity-card-body p {
    margin-bottom: 13px;
}

.app-section {
    background: linear-gradient(180deg, transparent, rgba(74, 0, 127, 0.20), transparent);
}

.news-card time {
    display: block;
    margin-bottom: 11px;
    color: var(--cyan);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.review-card {
    margin: 0;
    padding: 25px;
    border-radius: 16px;
}

.review-card p {
    min-height: 126px;
    margin-bottom: 18px;
    color: #efe7ff;
}

.review-card footer {
    color: var(--cyan);
    font-size: 0.87rem;
    font-weight: 800;
}

.faq-list {
    display: grid;
    gap: 11px;
}

.faq-item {
    border-radius: 13px;
    overflow: hidden;
}

.faq-item summary {
    position: relative;
    padding: 20px 54px 20px 22px;
    color: var(--title);
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    position: absolute;
    top: 50%;
    right: 22px;
    content: "+";
    transform: translateY(-50%);
    color: var(--cyan);
    font-size: 1.3rem;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    margin: 0;
    padding: 0 22px 20px;
}

.responsible-banner,
.notice-panel {
    display: grid;
    grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.2fr) auto;
    align-items: center;
    gap: 28px;
    padding: 31px;
    border-radius: 20px;
    background:
        linear-gradient(120deg, rgba(37, 223, 245, 0.08), rgba(240, 107, 234, 0.10)),
        rgba(45, 0, 82, 0.70);
}

.responsible-banner p,
.notice-panel p {
    margin-bottom: 0;
}

.inner-main {
    padding-bottom: 30px;
}

.inner-hero {
    display: grid;
    min-height: 600px;
    padding-block: clamp(80px, 10vw, 130px);
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.78fr);
    align-items: center;
    gap: clamp(34px, 6vw, 80px);
}

.inner-hero::before {
    position: absolute;
    top: 120px;
    left: 50%;
    z-index: -1;
    width: min(90vw, 1000px);
    height: 420px;
    content: "";
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(143, 123, 255, 0.16), transparent 68%);
    filter: blur(30px);
}

.inner-hero-copy {
    max-width: 760px;
}

.inner-hero-visual {
    margin: 0;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(74, 0, 127, 0.42), rgba(22, 0, 43, 0.84));
    box-shadow: var(--shadow);
}

.inner-hero-visual img {
    width: 100%;
    max-height: 480px;
}

.prose-panel,
.accent-panel {
    padding: clamp(28px, 5vw, 54px);
    border-radius: 22px;
}

.rich-copy {
    display: grid;
    gap: 16px;
}

.rich-copy p {
    margin-bottom: 0;
    font-size: 1rem;
}

.rich-copy.two-columns {
    grid-template-columns: 1fr 1fr;
    gap: 20px 34px;
}

.split-panel {
    display: grid;
    padding: clamp(28px, 5vw, 54px);
    border-radius: 22px;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 40px;
}

.step-list {
    display: grid;
    margin: 0;
    padding: 0;
    gap: 13px;
    counter-reset: steps;
    list-style: none;
}

.step-list li {
    position: relative;
    padding: 15px 16px 15px 58px;
    border: 1px solid rgba(191, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(45, 0, 82, 0.52);
    counter-increment: steps;
}

.step-list li::before {
    position: absolute;
    top: 15px;
    left: 16px;
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    content: counter(steps, decimal-leading-zero);
    border-radius: 50%;
    color: #16002b;
    background: var(--cyan);
    font-size: 0.73rem;
    font-weight: 900;
}

.step-list strong,
.step-list span {
    display: block;
}

.step-list strong {
    color: var(--title);
}

.step-list span {
    color: var(--subtle);
    font-size: 0.92rem;
}

.accent-panel {
    background:
        radial-gradient(circle at 100% 0%, rgba(240, 107, 234, 0.12), transparent 24rem),
        rgba(60, 0, 100, 0.56);
}

.site-footer {
    position: relative;
    z-index: 2;
    margin-top: 70px;
    color: #d8c7ff;
    background: #140024;
    border-top: 1px solid rgba(191, 255, 255, 0.12);
}

.footer-grid {
    display: grid;
    padding-block: 58px 42px;
    grid-template-columns: 1.65fr 1fr 1fr 1fr;
    gap: 36px;
}

.footer-brand p {
    max-width: 440px;
    margin-top: 16px;
    font-size: 0.92rem;
}

.footer-grid h2 {
    margin-bottom: 15px;
    color: var(--title);
    font-size: 1rem;
}

.footer-grid > div:not(.footer-brand) {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-grid a:not(:has(img)) {
    color: var(--muted);
    font-size: 0.9rem;
}

.footer-grid a:hover {
    color: var(--cyan);
}

.footer-bottom {
    display: flex;
    padding-block: 20px 28px;
    justify-content: space-between;
    gap: 28px;
    border-top: 1px solid rgba(191, 255, 255, 0.08);
}

.footer-bottom p {
    margin: 0;
    color: var(--subtle);
    font-size: 0.82rem;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1180px) {
    .desktop-nav {
        gap: 13px;
    }

    .desktop-nav a {
        font-size: 0.86rem;
    }

    .brand img {
        max-width: 160px;
        height: 44px;
    }

    .game-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 980px) {
    .desktop-nav {
        display: none;
    }

    .header-inner {
        grid-template-columns: auto 1fr auto;
    }

    .header-actions {
        grid-column: 3;
    }

    .hero-inner,
    .brand-split,
    .app-split,
    .theme-split,
    .support-split,
    .inner-hero {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .hero-copy {
        max-width: 800px;
    }

    .hero-visual,
    .inner-hero-visual {
        width: min(100%, 650px);
        margin-inline: auto;
    }

    .service-strip-grid {
        grid-template-columns: 1fr 1fr;
    }

    .service-item:nth-child(2) {
        border-right: 0;
    }

    .service-item:nth-child(-n+2) {
        border-bottom: 1px solid rgba(191, 255, 255, 0.10);
    }

    .category-grid,
    .guide-grid,
    .news-grid,
    .feature-grid,
    .review-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .responsible-banner,
    .notice-panel {
        grid-template-columns: 1fr;
    }

    .split-panel {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 700px) {
    .section-shell,
    .header-inner,
    .hero-inner {
        width: min(calc(100% - 24px), var(--max));
    }

    .header-inner {
        min-height: 68px;
        gap: 10px;
    }

    .brand img {
        max-width: 130px;
        height: 38px;
    }

    .header-cta {
        min-height: 38px;
        padding-inline: 0.72rem;
        font-size: 0.78rem;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
    }

    .drawer-nav {
        grid-template-columns: 1fr;
    }

    .hero-inner {
        padding-block: 66px 100px;
    }

    .hero-visual img {
        max-height: 390px;
    }

    .service-strip {
        margin-top: -22px;
    }

    .service-strip-grid {
        grid-template-columns: 1fr;
    }

    .service-item,
    .service-item:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid rgba(191, 255, 255, 0.10);
    }

    .service-item:last-child {
        border-bottom: 0;
    }

    .category-grid,
    .guide-grid,
    .news-grid,
    .feature-grid,
    .review-grid,
    .activity-grid,
    .rich-copy.two-columns {
        grid-template-columns: 1fr;
    }

    .game-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 11px;
    }

    .game-card-body {
        padding: 13px;
    }

    .game-card-body h3 {
        font-size: 0.98rem;
    }

    .game-card-body p {
        min-height: 82px;
        font-size: 0.78rem;
    }

    .theme-points,
    .app-points,
    .support-points {
        grid-template-columns: 1fr;
    }

    .review-card p {
        min-height: 0;
    }

    .inner-hero {
        min-height: auto;
        padding-block: 70px 35px;
    }

    .inner-hero-visual {
        padding: 14px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px 20px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }

    .emoji-field span:nth-child(n+7) {
        display: none;
    }
}

@media (max-width: 420px) {
    .brand img {
        max-width: 108px;
        height: 34px;
    }

    .header-cta {
        padding-inline: 0.58rem;
        font-size: 0.72rem;
    }

    .header-actions {
        gap: 6px;
    }

    .menu-toggle {
        width: 38px;
        height: 38px;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .game-card-body p {
        min-height: 96px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
