/* PG麻将胡了 - 全站共用样式 */
:root {
    --bg: #24003f;
    --bg-deep: #16002b;
    --bg-1: #2d0052;
    --bg-2: #3b006b;
    --bg-3: #4a007f;
    --cyan: #25dff5;
    --pink: #f06bea;
    --heading: #bfffff;
    --text: #ffffff;
    --muted: #d8c7ff;
    --soft: #b99ee8;
    --card: rgba(60, 0, 100, 0.56);
    --border: rgba(191, 255, 255, 0.14);
    --shadow: 0 18px 46px rgba(0, 0, 0, 0.32);
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--text);
    background:
        radial-gradient(circle at 12% 8%, rgba(37, 223, 245, .12), transparent 26rem),
        radial-gradient(circle at 88% 24%, rgba(240, 107, 234, .14), transparent 30rem),
        linear-gradient(180deg, var(--bg-deep), var(--bg) 32%, #1c0035 100%);
    font-family: "Microsoft YaHei", "PingFang SC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.75;
    text-rendering: optimizeLegibility;
}
body.drawer-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
main, .site-footer, .site-header { position: relative; z-index: 2; }
.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }
.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 12000;
    padding: 10px 14px;
    color: #16002b;
    background: #bfffff;
    border-radius: 8px;
    transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
    position: sticky;
    top: 0;
    z-index: 9000;
    border-bottom: 1px solid rgba(191, 255, 255, .1);
    background: rgba(36, 0, 63, .72);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .22);
    backdrop-filter: blur(18px) saturate(140%);
}
.header-inner {
    min-height: 76px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 22px;
}
.brand img, .drawer-brand img, .footer-brand img { width: auto; object-fit: contain; }
.brand img { max-height: 48px; }
.desktop-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(12px, 1.55vw, 24px);
    min-width: 0;
}
.desktop-nav a {
    position: relative;
    padding: 25px 0 20px;
    color: #fff;
    font-size: 14px;
    white-space: nowrap;
    transition: color .2s ease;
}
.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: 13px;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--pink));
    transition: left .22s ease, right .22s ease;
}
.desktop-nav a:hover, .desktop-nav a.is-active { color: var(--heading); }
.desktop-nav a:hover::after, .desktop-nav a.is-active::after { left: 0; right: 0; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.main-btn {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border: 0;
    border-radius: 6px;
    color: #fff;
    background: linear-gradient(90deg, #21dff5 0%, #8f7bff 52%, #f06bea 100%);
    box-shadow: 0 14px 30px rgba(240, 107, 234, .26);
    font-weight: 800;
    letter-spacing: .02em;
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.main-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(37, 223, 245, .3);
    filter: saturate(1.08);
}
.header-cta { min-width: 120px; padding-inline: 15px; font-size: 14px; }
.menu-toggle {
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 5px;
    border: 1px solid rgba(191, 255, 255, .24);
    border-radius: 9px;
    background: rgba(45, 0, 82, .76);
    cursor: pointer;
}
.menu-toggle span { width: 21px; height: 2px; border-radius: 2px; background: #fff; }
.drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    pointer-events: none;
    opacity: 0;
    background: rgba(8, 0, 18, .72);
    backdrop-filter: blur(4px);
    transition: opacity .25s ease;
}
.drawer-overlay.is-open { pointer-events: auto; opacity: 1; }
.side-drawer {
    position: fixed;
    z-index: 10010;
    top: 0;
    right: 0;
    width: min(390px, 92vw);
    height: 100dvh;
    overflow-y: auto;
    padding: 22px;
    border-left: 1px solid rgba(191, 255, 255, .14);
    background: linear-gradient(180deg, rgba(45, 0, 82, .99), rgba(20, 0, 36, .99));
    box-shadow: -22px 0 60px rgba(0, 0, 0, .46);
    transform: translateX(104%);
    visibility: hidden;
    transition: transform .3s ease, visibility .3s ease;
}
.side-drawer.is-open { transform: translateX(0); visibility: visible; }
.drawer-head { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-bottom: 20px; }
.drawer-brand img { max-height: 46px; }
.drawer-close {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(191, 255, 255, .2);
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
    font-size: 29px;
    line-height: 1;
    cursor: pointer;
}
.drawer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.drawer-nav a {
    padding: 12px 13px;
    border: 1px solid transparent;
    border-radius: 9px;
    color: var(--muted);
    background: rgba(255, 255, 255, .025);
    transition: .2s ease;
}
.drawer-nav a:hover { color: #fff; border-color: rgba(37, 223, 245, .24); background: rgba(37, 223, 245, .08); }
.drawer-note { margin-top: 22px; padding: 18px; border-radius: 12px; color: var(--muted); background: rgba(37, 223, 245, .07); }
.drawer-note strong { color: var(--heading); }
.drawer-note p { margin: 6px 0 0; font-size: 14px; }

.emoji-field { position: fixed; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.emoji-field span {
    position: absolute;
    left: var(--x);
    bottom: -10vh;
    opacity: 0;
    filter: drop-shadow(0 0 12px rgba(37, 223, 245, .26));
    font-size: clamp(18px, 2vw, 30px);
    animation: floatEmoji var(--t) linear var(--d) infinite;
}
@keyframes floatEmoji {
    0% { transform: translate3d(0, 0, 0) rotate(-8deg); opacity: 0; }
    10% { opacity: .18; }
    45% { transform: translate3d(28px, -52vh, 0) rotate(10deg); opacity: .27; }
    85% { opacity: .12; }
    100% { transform: translate3d(-18px, -118vh, 0) rotate(-12deg); opacity: 0; }
}

.hero {
    position: relative;
    min-height: min(760px, calc(100vh - 76px));
    display: flex;
    align-items: center;
    isolation: isolate;
    overflow: hidden;
    background: url('背景.webp') center / cover no-repeat;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background: linear-gradient(90deg, rgba(20, 0, 36, .94) 0%, rgba(36, 0, 63, .77) 50%, rgba(36, 0, 63, .52) 100%);
}
.hero::after {
    content: "";
    position: absolute;
    left: -10%;
    right: -10%;
    bottom: -24%;
    height: 52%;
    z-index: -1;
    background: radial-gradient(ellipse, rgba(240, 107, 234, .34), transparent 68%);
    filter: blur(16px);
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(330px, .95fr); align-items: center; gap: clamp(32px, 6vw, 84px); padding-block: 80px; }
.hero-copy { max-width: 720px; }
.eyebrow {
    margin: 0 0 12px;
    color: var(--cyan);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}
h1, h2, h3, .section-title { color: var(--heading); text-shadow: 0 0 18px rgba(37, 223, 245, .2); }
h1 { margin: 0; font-size: clamp(44px, 7vw, 82px); line-height: 1.06; letter-spacing: -.045em; }
.hero-subtitle { margin: 17px 0 0; color: #fff; font-size: clamp(20px, 2.4vw, 29px); font-weight: 800; }
.lead, .hero-description { color: var(--muted); font-size: clamp(17px, 1.8vw, 20px); }
.hero-description { max-width: 690px; margin: 23px 0 0; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; margin-top: 30px; }
.text-link { display: inline-flex; align-items: center; color: var(--heading); font-weight: 800; }
.text-link::after { content: " →"; margin-left: 7px; color: var(--pink); }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 0; padding: 0; list-style: none; }
.hero-trust li { padding: 7px 11px; border: 1px solid rgba(191, 255, 255, .16); border-radius: 999px; color: var(--muted); background: rgba(22, 0, 43, .44); font-size: 13px; }
.hero-visual { position: relative; margin: 0; }
.hero-visual::before { content: ""; position: absolute; inset: 10% 5%; z-index: -1; border-radius: 50%; background: radial-gradient(circle, rgba(37, 223, 245, .25), rgba(240, 107, 234, .12), transparent 68%); filter: blur(24px); }
.hero-visual img { max-height: 570px; margin: 0 auto; object-fit: contain; filter: drop-shadow(0 28px 38px rgba(0, 0, 0, .36)); animation: heroBob 5s ease-in-out infinite; }
@keyframes heroBob { 50% { transform: translateY(-10px); } }

.highlight-bar { margin-top: -34px; position: relative; z-index: 5; }
.highlight-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; padding: 1px; border-radius: 16px; overflow: hidden; background: linear-gradient(90deg, rgba(37, 223, 245, .5), rgba(143, 123, 255, .3), rgba(240, 107, 234, .5)); box-shadow: 0 24px 60px rgba(0, 0, 0, .34); }
.highlight-item { padding: 22px; background: rgba(35, 0, 62, .94); }
.highlight-item strong { display: block; margin-bottom: 5px; color: var(--heading); font-size: 16px; }
.highlight-item p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

.section { padding: clamp(72px, 9vw, 118px) 0; }
.section-muted { background: linear-gradient(180deg, rgba(45, 0, 82, .55), rgba(22, 0, 43, .42)); border-block: 1px solid rgba(191, 255, 255, .06); }
.section-heading { max-width: 780px; margin-bottom: 38px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-title { margin: 0; font-size: clamp(31px, 4.2vw, 52px); line-height: 1.16; letter-spacing: -.035em; }
.section-heading p:not(.eyebrow), .section-copy p, .reading-content p, .split-content p { color: var(--muted); }
.section-heading p:not(.eyebrow) { margin: 16px 0 0; }

.pill-nav { display: flex; gap: 11px; overflow-x: auto; padding: 12px 0 4px; scrollbar-width: thin; }
.pill-nav a { flex: 0 0 auto; padding: 10px 16px; border: 1px solid rgba(191, 255, 255, .15); border-radius: 999px; color: var(--muted); background: rgba(60, 0, 100, .48); }
.pill-nav a:hover { color: #fff; border-color: rgba(37, 223, 245, .42); background: rgba(37, 223, 245, .09); }
.channel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.channel-card { min-height: 208px; padding: 26px; border-radius: 16px; transition: transform .23s ease, border-color .23s ease, box-shadow .23s ease; }
.channel-card:hover { transform: translateY(-5px); border-color: rgba(37, 223, 245, .35); box-shadow: 0 20px 46px rgba(37, 223, 245, .09); }
.card-number { display: inline-flex; margin-bottom: 18px; color: var(--cyan); font-size: 13px; font-weight: 900; letter-spacing: .16em; }
.channel-card h3, .info-card h3 { margin: 0 0 10px; font-size: 21px; }
.channel-card p, .info-card p { margin: 0; color: var(--muted); font-size: 15px; }

.card, .zone-card, .info-card {
    background: rgba(60, 0, 100, .56);
    border: 1px solid rgba(191, 255, 255, .14);
    box-shadow: 0 18px 46px rgba(0, 0, 0, .32);
    backdrop-filter: blur(10px);
}
.brand-split, .app-grid, .split-content, .reading-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: center; gap: clamp(32px, 6vw, 76px); }
.brand-visual, .app-visual, .theme-visual, .inner-visual { margin: 0; border-radius: 24px; overflow: hidden; background: radial-gradient(circle at 50% 40%, rgba(37, 223, 245, .16), rgba(60, 0, 100, .5) 60%, rgba(20, 0, 36, .85)); border: 1px solid rgba(191, 255, 255, .12); box-shadow: var(--shadow); }
.brand-visual img, .app-visual img, .theme-visual img, .inner-visual img { width: 100%; max-height: 540px; object-fit: contain; }
.section-copy h2 { margin: 0; font-size: clamp(32px, 4vw, 50px); line-height: 1.18; }
.section-copy p { margin: 18px 0 0; }
.section-copy .main-btn { margin-top: 22px; }
.poster-banner { margin: 0 auto; max-width: 1040px; border-radius: 24px; overflow: hidden; border: 1px solid rgba(191, 255, 255, .14); box-shadow: 0 30px 80px rgba(0, 0, 0, .42); }
.poster-banner img { width: 100%; height: auto; object-fit: contain; }

.game-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }
.game-card { overflow: hidden; border-radius: 15px; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.game-card:hover { transform: translateY(-6px); border-color: rgba(37, 223, 245, .42); box-shadow: 0 24px 48px rgba(37, 223, 245, .12); }
.game-card figure { aspect-ratio: 1 / 1; margin: 0; overflow: hidden; background: #17002c; }
.game-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.game-card:hover img { transform: scale(1.035); }
.game-card-content { padding: 17px; }
.game-card h3 { margin: 0 0 7px; font-size: 17px; }
.game-card p { min-height: 72px; margin: 0 0 10px; color: var(--muted); font-size: 13px; }
.game-card .text-link { font-size: 13px; }

.guide-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 24px; }
.guide-main { padding: clamp(28px, 4vw, 48px); border-radius: 20px; }
.guide-main h2 { margin: 0; font-size: clamp(29px, 3.4vw, 43px); }
.guide-main p { color: var(--muted); }
.guide-links { display: grid; gap: 14px; }
.guide-link { display: block; padding: 20px; border-radius: 14px; }
.guide-link small { display: block; color: var(--cyan); }
.guide-link strong { display: block; margin-top: 4px; color: var(--heading); }
.guide-link p { margin: 7px 0 0; color: var(--muted); font-size: 14px; }

.activity-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.activity-card { display: grid; grid-template-columns: 180px 1fr; min-height: 220px; overflow: hidden; border-radius: 18px; }
.activity-card img { width: 100%; height: 100%; object-fit: cover; background: #16002b; }
.activity-copy { padding: 26px; }
.activity-copy h3 { margin: 0; }
.activity-copy p { color: var(--muted); }

.app-points { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px; margin-top: 24px; }
.app-point { padding: 16px; border: 1px solid rgba(191, 255, 255, .12); border-radius: 12px; background: rgba(255, 255, 255, .025); }
.app-point strong { display: block; color: var(--heading); }
.app-point span { color: var(--muted); font-size: 13px; }
.news-grid, .support-grid, .feature-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 17px; }
.news-card, .support-card, .info-card { padding: 24px; border-radius: 15px; }
.news-card time { color: var(--cyan); font-size: 13px; }
.news-card h3, .support-card h3 { margin: 8px 0; }
.news-card p, .support-card p { margin: 0; color: var(--muted); font-size: 14px; }

.review-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.review-card { margin: 0; padding: 26px; border: 1px solid rgba(191, 255, 255, .12); border-radius: 16px; background: linear-gradient(145deg, rgba(60, 0, 100, .68), rgba(35, 0, 62, .7)); box-shadow: var(--shadow); }
.review-card p { margin: 0; color: #f5efff; }
.review-card footer { margin-top: 18px; color: var(--cyan); font-size: 13px; }
.faq-list { display: grid; gap: 12px; }
.faq-item { border: 1px solid rgba(191, 255, 255, .13); border-radius: 13px; background: rgba(60, 0, 100, .45); }
.faq-item summary { padding: 18px 22px; color: var(--heading); font-weight: 800; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; float: right; color: var(--pink); font-size: 22px; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin: 0; padding: 0 22px 20px; color: var(--muted); }
.responsible-strip { padding-top: 30px; }
.responsible-inner { display: flex; justify-content: space-between; align-items: center; gap: 30px; padding: 32px; border: 1px solid rgba(191, 255, 255, .13); border-radius: 18px; background: linear-gradient(100deg, rgba(37, 223, 245, .08), rgba(240, 107, 234, .1)); }
.responsible-inner h2 { margin: 0; font-size: clamp(25px, 3vw, 38px); }
.responsible-inner p { max-width: 800px; margin: 10px 0 0; color: var(--muted); }
.outline-btn { flex: 0 0 auto; padding: 11px 17px; border: 1px solid rgba(191, 255, 255, .45); border-radius: 8px; color: var(--heading); font-weight: 800; }

.inner-hero { position: relative; overflow: hidden; padding: clamp(78px, 9vw, 126px) 0; background: linear-gradient(135deg, rgba(45, 0, 82, .94), rgba(22, 0, 43, .95)); }
.inner-hero::before { content: ""; position: absolute; inset: auto -10% -50% 25%; height: 95%; background: radial-gradient(circle, rgba(37, 223, 245, .16), rgba(240, 107, 234, .12), transparent 68%); filter: blur(18px); }
.inner-hero-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(300px, .92fr); align-items: center; gap: clamp(34px, 7vw, 86px); }
.inner-hero h1 { font-size: clamp(40px, 6vw, 70px); }
.inner-hero .lead { max-width: 720px; }
.inner-visual img { max-height: 430px; margin-inline: auto; }
.reading-grid { align-items: start; grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); }
.reading-content { font-size: 17px; }
.reading-content p:first-child::first-letter { float: left; margin: 4px 8px 0 0; color: var(--cyan); font-size: 52px; font-weight: 900; line-height: .8; }
.side-note { position: sticky; top: 104px; }
.side-note h2 { margin: 7px 0 10px; font-size: 25px; }
.mini-label { color: var(--cyan); font-size: 12px; font-weight: 900; letter-spacing: .15em; }
.split-content { align-items: start; }
.split-content h2 { margin-top: 0; font-size: clamp(30px, 4vw, 47px); }
.checklist h3 { margin-top: 0; }
.checklist ul { margin: 0; padding: 0; list-style: none; }
.checklist li { position: relative; padding: 11px 0 11px 29px; border-bottom: 1px solid rgba(191, 255, 255, .08); color: var(--muted); }
.checklist li:last-child { border-bottom: 0; }
.checklist li::before { content: "✓"; position: absolute; left: 0; color: var(--cyan); font-weight: 900; }

.site-footer { padding: 66px 0 24px; color: #d8c7ff; background: #140024; border-top: 1px solid rgba(191, 255, 255, .08); }
.footer-grid { display: grid; grid-template-columns: 1.7fr repeat(3, 1fr); gap: 40px; }
.footer-brand p { max-width: 470px; }
.site-footer h2 { margin: 0 0 15px; color: var(--heading); font-size: 16px; }
.site-footer a:not(.footer-brand a) { display: block; width: fit-content; margin: 9px 0; color: var(--muted); font-size: 14px; }
.site-footer a:hover { color: var(--cyan); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 46px; padding-top: 22px; border-top: 1px solid rgba(191, 255, 255, .08); font-size: 13px; }
.footer-bottom p { margin: 0; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.content-img, .zone-card img, .app-section img, .hero-visual img, .poster-banner img { max-width: 100%; height: auto; object-fit: contain; }

@media (max-width: 1080px) {
    .desktop-nav { display: none; }
    .header-inner { grid-template-columns: 1fr auto; }
    .game-grid { grid-template-columns: repeat(4, 1fr); }
    .news-grid, .support-grid, .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .channel-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1.5fr repeat(3, 1fr); gap: 24px; }
}

@media (max-width: 820px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .header-inner { min-height: 68px; gap: 10px; }
    .brand img { max-width: 142px; max-height: 40px; }
    .header-cta { min-width: auto; min-height: 40px; padding: 8px 12px; font-size: 12px; }
    .menu-toggle { width: 40px; height: 40px; }
    .hero { min-height: auto; }
    .hero-grid, .inner-hero-grid, .brand-split, .app-grid, .split-content, .reading-grid, .guide-grid { grid-template-columns: 1fr; }
    .hero-grid { padding-block: 70px 90px; }
    .hero-copy { text-align: center; }
    .hero-description { margin-inline: auto; }
    .hero-actions, .hero-trust { justify-content: center; }
    .hero-visual { max-width: 520px; margin-inline: auto; }
    .highlight-bar { margin-top: -26px; }
    .highlight-grid { grid-template-columns: repeat(2, 1fr); }
    .game-grid { grid-template-columns: repeat(3, 1fr); }
    .activity-card { grid-template-columns: 145px 1fr; }
    .review-grid { grid-template-columns: 1fr 1fr; }
    .side-note { position: static; }
    .inner-visual { max-width: 560px; margin-inline: auto; order: -1; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-bottom { display: grid; }
}

@media (max-width: 620px) {
    .section { padding: 68px 0; }
    .header-actions { gap: 7px; }
    .brand img { max-width: 120px; }
    .header-cta { padding-inline: 10px; }
    .highlight-grid, .channel-grid, .activity-grid, .review-grid, .app-points, .news-grid, .support-grid, .feature-grid { grid-template-columns: 1fr; }
    .highlight-item { padding: 18px; }
    .game-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .game-card-content { padding: 14px; }
    .game-card p { min-height: 82px; }
    .activity-card { grid-template-columns: 1fr; }
    .activity-card img { max-height: 260px; object-fit: contain; }
    .drawer-nav { grid-template-columns: 1fr; }
    .responsible-inner { align-items: flex-start; flex-direction: column; padding: 25px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand { grid-column: auto; }
    .emoji-field span:nth-child(n+7) { display: none; }
    .inner-hero { padding-block: 64px; }
}

@media (max-width: 390px) {
    .brand img { max-width: 104px; }
    .header-cta { font-size: 11px; padding: 7px 8px; }
    .menu-toggle { width: 38px; height: 38px; }
    .game-card h3 { font-size: 15px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
