@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Noto+Sans+SC:wght@400;500;700;900&display=swap');

:root { --dark: #262626; --dark-deep: #1d1d1d; --light: #f8f8f6; --ink: #202020; --muted: #818181; --orange: #f3a214; --orange-deep: #dc8b00; --soft-line: rgba(255,255,255,.16); --dark-line: rgba(32,32,32,.16); --sans: 'Manrope', 'Noto Sans SC', 'Microsoft Yahei', sans-serif; }
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--dark); font-family: var(--sans); line-height: 1.5; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.shell { width: min(1180px, calc(100% - 64px)); margin: 0 auto; }
.skip-link { position: fixed; left: 20px; top: -60px; z-index: 50; padding: 9px 13px; background: var(--orange); color: var(--dark); font-size: 12px; font-weight: 800; transition: top .2s; }
.skip-link:focus { top: 18px; }
.site-header { position: fixed; inset: 0 0 auto; z-index: 20; height: 76px; color: var(--ink); background: rgba(248,248,246,.98); border-right: 4px solid var(--orange); box-shadow: 0 1px 0 rgba(32,32,32,.08); transition: box-shadow .2s; }
.site-header.is-scrolled { box-shadow: 0 5px 22px rgba(0,0,0,.12); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-size: 12px; font-weight: 800; letter-spacing: .11em; white-space: nowrap; }
.brand-symbol { position: relative; display: inline-block; width: 31px; height: 31px; border: 5px solid var(--orange); border-left-color: transparent; border-radius: 50%; transform: rotate(-37deg); }
.brand-symbol::before { content: ''; position: absolute; width: 9px; height: 9px; right: -7px; top: -6px; border-radius: 50%; background: var(--orange); }
.brand-symbol::after { content: ''; position: absolute; width: 7px; height: 7px; left: -7px; bottom: -4px; border-radius: 50%; background: var(--orange); }
.brand-symbol > span { position: absolute; width: 11px; height: 5px; right: 0; bottom: -5px; background: var(--orange); transform: rotate(-25deg); }
.brand-name { letter-spacing: .12em; }
.site-nav { position: absolute; left: 50%; top: 0; height: 76px; display: flex; align-items: center; gap: 48px; transform: translateX(-50%); }
.nav-link { display: inline-flex; align-items: center; gap: 10px; padding: 7px 2px; color: #777; font-size: 14px; font-weight: 700; white-space: nowrap; transition: color .2s; }
.nav-link svg { width: 27px; height: 27px; stroke-width: 1.8; color: #b9b9b9; transition: color .2s, transform .2s; }
.nav-link:hover, .nav-link.is-active { color: var(--orange-deep); }
.nav-link:hover svg, .nav-link.is-active svg { color: var(--orange); transform: translateY(-1px); }
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { border: 0; background: transparent; cursor: pointer; }
.nav-dropdown-toggle .nav-chevron { width: 14px; height: 14px; margin-left: -5px; color: #aaa; transition: transform .2s; }
.nav-dropdown.is-open .nav-chevron { transform: rotate(180deg); }
.dropdown-panel { position: absolute; top: 52px; left: 50%; width: 300px; display: grid; gap: 2px; padding: 9px; background: var(--light); border: 1px solid var(--dark-line); box-shadow: 0 15px 32px rgba(0,0,0,.15); opacity: 0; visibility: hidden; pointer-events: none; transform: translate(-50%, -8px); transition: opacity .2s, visibility .2s, transform .2s; }
.nav-dropdown.is-open .dropdown-panel, .nav-dropdown:focus-within .dropdown-panel { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0); }
.dropdown-panel a { display: grid; grid-template-columns: 28px 1fr 16px; align-items: center; gap: 10px; padding: 11px 10px; color: #666; border-bottom: 1px solid rgba(32,32,32,.08); transition: background .18s, color .18s; }
.dropdown-panel a:last-child { border-bottom: 0; }
.dropdown-panel a:hover { color: var(--ink); background: #eeeeea; }
.dropdown-panel a > svg { width: 15px; height: 15px; color: var(--orange-deep); opacity: 0; transition: opacity .18s, transform .18s; }
.dropdown-panel a:hover > svg { opacity: 1; transform: translate(2px, -2px); }
.dropdown-index { color: var(--orange-deep); font-size: 10px; font-weight: 800; letter-spacing: .08em; }
.dropdown-copy { display: flex; flex-direction: column; gap: 3px; font-size: 12px; font-weight: 800; }
.dropdown-copy small { color: #999; font-size: 9px; font-weight: 600; letter-spacing: .04em; }
@media (min-width: 651px) { .nav-dropdown:hover .dropdown-panel { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0); } }
.menu-toggle { display: none; width: 40px; height: 40px; place-items: center; border: 0; color: var(--ink); background: transparent; cursor: pointer; }
.menu-toggle svg { width: 22px; height: 22px; }
.dark-section { position: relative; color: var(--light); background-color: var(--dark); overflow: hidden; }
.noise { position: absolute; inset: 0; pointer-events: none; opacity: .3; background-image: repeating-linear-gradient(112deg, rgba(255,255,255,.028) 0, rgba(255,255,255,.028) 1px, transparent 1px, transparent 5px), repeating-linear-gradient(18deg, rgba(0,0,0,.08) 0, rgba(0,0,0,.08) 1px, transparent 1px, transparent 7px); mix-blend-mode: screen; }
.hero-screen { min-height: 100svh; padding: 76px 0 22px; display: grid; place-items: center; isolation: isolate; }
.hero-center { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero-logo { display: grid; place-items: center; width: 108px; height: 108px; margin-bottom: 17px; }
.brand-symbol-large { width: 90px; height: 90px; border-width: 13px; }
.brand-symbol-large::before { width: 25px; height: 25px; right: -19px; top: -13px; }
.brand-symbol-large::after { width: 21px; height: 21px; left: -18px; bottom: -10px; }
.brand-symbol-large > span { width: 31px; height: 13px; right: -1px; bottom: -14px; }
.hero-kicker, .section-kicker, .game-copy-top, .art-label, .art-number, .hero-reserve span, .hero-reserve small, .edge-note, .career-strip, .footer-bottom { font-size: 10px; letter-spacing: .13em; }
.hero-kicker { margin: 0 0 11px; color: rgba(248,248,246,.62); font-weight: 700; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { letter-spacing: -.05em; line-height: 1.04; font-weight: 800; }
h1 { margin-bottom: 24px; font-size: clamp(42px, 5.5vw, 75px); }
h2 { margin-bottom: 0; font-size: clamp(42px, 5vw, 68px); }
h1 em, h2 em { display: inline-block; color: var(--orange); font-style: normal; }
.hero-reserve { position: relative; width: min(560px, 86vw); height: 76px; margin-bottom: 29px; display: flex; align-items: center; justify-content: center; gap: 14px; color: rgba(248,248,246,.6); border: 1px solid rgba(248,248,246,.23); border-left: 0; border-right: 0; }
.hero-reserve::before, .hero-reserve::after { content: ''; position: absolute; top: -5px; width: 9px; height: 9px; border-top: 2px solid var(--orange); }
.hero-reserve::before { left: 0; border-left: 2px solid var(--orange); }
.hero-reserve::after { right: 0; border-right: 2px solid var(--orange); }
.hero-reserve span { color: var(--orange); font-weight: 700; }
.hero-reserve small { color: rgba(248,248,246,.52); }
.scroll-cue { display: grid; place-items: center; width: 48px; height: 48px; color: var(--light); border: 2px solid var(--light); border-radius: 50%; animation: float 2s ease-in-out infinite; }
.scroll-cue:hover { color: var(--orange); border-color: var(--orange); }
.scroll-cue svg { width: 25px; height: 25px; }
.edge-note { position: absolute; right: 18px; bottom: 26px; z-index: 2; color: rgba(248,248,246,.42); writing-mode: vertical-rl; }
.hero-orbit, .hero-ring, .hero-plus { position: absolute; z-index: 1; color: var(--orange); }
.hero-orbit { width: 150px; height: 150px; border: 1px solid rgba(243,162,20,.48); border-radius: 50%; }
.orbit-one { top: 20%; left: 18%; }
.orbit-two { right: 18%; bottom: 18%; width: 86px; height: 86px; border-style: dashed; }
.hero-ring { width: 10px; height: 10px; border: 2px solid var(--orange); border-radius: 50%; }
.ring-one { top: 29%; right: 23%; }
.ring-two { left: 29%; bottom: 25%; width: 16px; height: 16px; }
.hero-plus { font-size: 32px; font-weight: 400; }
.plus-one { top: 26%; left: 34%; }
.plus-two { right: 34%; bottom: 28%; font-size: 25px; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(5px); } }
.games-section { padding: 120px 0 72px; }
.section-header { position: relative; z-index: 2; display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; margin-bottom: 54px; }
.section-kicker { margin-bottom: 16px; color: var(--orange); font-weight: 800; }
.section-summary { max-width: 280px; margin: 0 0 5px; color: rgba(248,248,246,.63); font-size: 14px; line-height: 1.8; }
.games-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(0, .82fr); gap: 17px; }
.game-card { display: flex; flex-direction: column; min-width: 0; border: 1px solid var(--soft-line); background: rgba(255,255,255,.035); transition: border-color .2s, transform .2s; }
.game-card:hover { border-color: var(--orange); transform: translateY(-4px); }
.game-art { position: relative; min-height: 330px; display: block; overflow: hidden; background: #303030; border-bottom: 1px solid var(--soft-line); }
.game-card-main .game-art { min-height: 420px; }
.game-art::before { content: ''; position: absolute; inset: 12%; border: 1px solid rgba(243,162,20,.48); transform: rotate(12deg); }
.game-art::after { content: ''; position: absolute; width: 150px; height: 150px; left: 50%; top: 50%; border: 1px solid rgba(243,162,20,.82); border-radius: 50%; transform: translate(-50%, -50%); }
.game-card:nth-child(2) .game-art::before { transform: rotate(-19deg); }
.game-card:nth-child(2) .game-art::after { width: 100px; height: 100px; border-radius: 0; transform: translate(-50%, -50%) rotate(45deg); }
.art-number, .art-label { position: absolute; z-index: 1; color: rgba(248,248,246,.64); font-weight: 700; }
.art-number { top: 19px; right: 20px; color: var(--orange); font-size: 20px; }
.art-label { left: 20px; bottom: 19px; }
.game-copy { position: relative; padding: 24px 25px 30px; }
.game-copy-top { display: flex; justify-content: space-between; gap: 14px; color: rgba(248,248,246,.45); font-weight: 700; }
.game-copy h3 { margin: 43px 0 11px; font-size: clamp(25px, 3vw, 39px); line-height: 1.12; }
.game-card:nth-child(2) .game-copy h3 { font-size: 29px; }
.game-copy h3 small { display: block; margin-top: 8px; color: var(--orange); font-size: 11px; font-weight: 600; letter-spacing: .06em; }
.game-copy p { max-width: 360px; margin-bottom: 0; color: rgba(248,248,246,.64); font-size: 13px; line-height: 1.8; }
.round-arrow { position: absolute; right: 25px; bottom: 29px; display: grid; place-items: center; width: 40px; height: 40px; color: var(--light); border: 1px solid rgba(248,248,246,.45); border-radius: 50%; transition: color .2s, background .2s; }
.round-arrow:hover { color: var(--dark); background: var(--orange); border-color: var(--orange); }
.round-arrow svg { width: 16px; height: 16px; }
.section-more { position: relative; z-index: 2; display: flex; align-items: center; gap: 10px; width: fit-content; margin-top: 28px; color: var(--orange); font-size: 12px; font-weight: 800; }
.section-more:hover { color: var(--light); }
.section-more svg { width: 16px; height: 16px; }
.light-section { background: var(--light); }
.about-section { padding: 124px 0 136px; }
.about-layout { display: grid; grid-template-columns: .7fr 1.05fr .8fr; gap: 70px; align-items: start; }
.about-section .section-header { display: block; margin: 0; }
.about-section .section-kicker, .contact-section .section-kicker { color: var(--orange-deep); }
.about-copy { padding-top: 31px; }
.about-lede { max-width: 480px; margin-bottom: 20px; font-size: 20px; font-weight: 700; line-height: 1.65; letter-spacing: -.02em; }
.about-body { max-width: 430px; color: #666; font-size: 14px; line-height: 1.9; }
.about-stats { display: flex; gap: 45px; margin-top: 46px; }
.about-stats div { display: flex; flex-direction: column; gap: 4px; }
.about-stats strong { color: var(--orange-deep); font-size: 34px; line-height: 1; }
.about-stats span { color: #777; font-size: 10px; font-weight: 700; letter-spacing: .06em; }
.about-art { position: relative; min-height: 360px; margin-top: 5px; overflow: hidden; border: 1px solid #d5d5d1; background: #e7e7e2; }
.about-art::before { content: ''; position: absolute; inset: 15%; border: 1px solid rgba(32,32,32,.2); transform: rotate(-8deg); }
.about-art::after { content: ''; position: absolute; right: 18%; bottom: 18%; width: 86px; height: 86px; background: var(--orange); }
.about-art span, .about-art small, .about-art b { position: absolute; z-index: 1; }
.about-art span { left: 17px; bottom: 17px; color: #777; font-size: 10px; font-weight: 800; letter-spacing: .1em; }
.about-art small { right: 17px; bottom: 17px; color: var(--orange-deep); font-size: 10px; }
.about-art b { top: 17px; right: 17px; color: var(--orange-deep); font-size: 19px; }
.careers-section { padding: 118px 0 70px; }
.careers-layout { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 85px; align-items: end; }
.careers-layout .section-header { display: block; margin: 0; }
.careers-copy { max-width: 420px; padding-bottom: 4px; }
.careers-copy p { color: rgba(248,248,246,.67); font-size: 15px; line-height: 1.9; }
.orange-button { display: inline-flex; align-items: center; gap: 10px; min-height: 45px; padding: 0 18px; color: var(--dark); background: var(--orange); font-size: 11px; font-weight: 800; letter-spacing: .05em; transition: background .2s, transform .2s; }
.orange-button:hover { background: #ffb429; transform: translateY(-2px); }
.orange-button svg { width: 15px; height: 15px; }
.career-strip { position: relative; z-index: 2; display: flex; justify-content: space-between; gap: 20px; margin-top: 96px; padding-top: 17px; color: rgba(248,248,246,.4); border-top: 1px solid var(--soft-line); font-weight: 700; }
.contact-section { padding: 115px 0 128px; }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 85px; align-items: end; }
.contact-layout h2 em { color: var(--orange-deep); }
.contact-email { display: inline-flex; align-items: center; gap: 10px; padding-bottom: 8px; color: var(--orange-deep); border-bottom: 1px solid currentColor; font-size: clamp(18px, 2.2vw, 27px); font-weight: 800; letter-spacing: -.04em; }
.contact-email:hover { color: var(--ink); }
.contact-email svg { width: 17px; height: 17px; }
.contact-note { margin-top: 19px; color: #6d6d6d; font-size: 13px; line-height: 1.8; }
.site-footer { color: var(--ink); background: var(--light); border-top: 1px solid var(--dark-line); }
.footer-top { display: flex; align-items: center; min-height: 112px; }
.footer-top .brand-symbol { width: 25px; height: 25px; border-width: 4px; }
.footer-links { display: flex; gap: 25px; margin: 0 auto 0 90px; color: #777; font-size: 12px; font-weight: 700; }
.footer-links a:hover { color: var(--orange-deep); }
.footer-social { display: flex; gap: 8px; }
.footer-social a { display: grid; place-items: center; width: 31px; height: 31px; color: #888; border: 1px solid #d0d0cb; border-radius: 50%; }
.footer-social a:hover { color: var(--orange-deep); border-color: var(--orange); }
.footer-social svg { width: 14px; height: 14px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; min-height: 61px; gap: 20px; color: #999; border-top: 1px solid var(--dark-line); font-size: 9px; letter-spacing: .04em; }
.footer-bottom a { display: inline-flex; align-items: center; gap: 6px; color: #777; }
.footer-bottom a:hover { color: var(--orange-deep); }
.footer-bottom svg { width: 13px; height: 13px; }
.visually-hidden { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; white-space: nowrap !important; border: 0 !important; }
.hero-banner { position: relative; padding-top: 76px; color: var(--light); background: var(--dark-deep); overflow: hidden; }
.hero-carousel { position: relative; }
.carousel-viewport { position: relative; height: clamp(610px, calc(100svh - 76px), 880px); min-height: 610px; overflow: hidden; }
.carousel-track { position: relative; height: 100%; }
.banner-slide { position: absolute; inset: 0; display: block; overflow: hidden; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .85s ease, visibility .85s ease; }
.banner-slide.is-active { z-index: 2; opacity: 1; visibility: visible; pointer-events: auto; }
.banner-media { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 7px; overflow: hidden; opacity: .62; background: #313131; transform: scale(1.035); transition: transform 7s linear, opacity .8s ease; }
.banner-slide.is-active .banner-media { transform: scale(1); }
.banner-media::before { content: ''; position: absolute; inset: 0; opacity: .82; background: rgba(255,255,255,.025); }
.banner-media::after { content: ''; position: absolute; inset: 12% 9%; border: 1px solid rgba(255,255,255,.11); }
.banner-media > span, .banner-media > small { position: relative; z-index: 1; color: rgba(255,255,255,.32); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.banner-media > small { color: rgba(255,255,255,.22); font-weight: 500; }
.banner-theme-1 { background: #31433f; }
.banner-theme-2 { background: #39445e; }
.banner-theme-3 { background: #515064; }
.banner-theme-4 { background: #574633; }
.banner-theme-5 { background: #56634f; }
.banner-theme-6 { background: #2f5966; }
.banner-theme-7 { background: #6c3e31; }
.banner-shade { position: absolute; inset: 0; z-index: 1; background: rgba(8,8,8,.5); }
.banner-content { position: relative; z-index: 3; height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding-top: 34px; padding-bottom: 92px; }
.banner-content > p { margin-bottom: 20px; color: var(--orange); font-size: 10px; font-weight: 800; letter-spacing: .15em; }
.banner-title { max-width: 780px; margin: 0 0 20px; color: var(--light); font-size: 88px; font-weight: 900; line-height: .93; letter-spacing: -.065em; }
.banner-title small { display: block; margin-top: 17px; color: rgba(248,248,246,.62); font-size: 12px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.banner-summary { max-width: 470px; color: rgba(248,248,246,.76); font-size: 16px; line-height: 1.75; }
.banner-cta { display: inline-flex; align-items: center; gap: 9px; margin-top: 31px; min-height: 43px; padding: 0 17px; color: var(--dark); background: var(--orange); font-size: 11px; font-weight: 800; letter-spacing: .06em; transition: transform .2s, background .2s; }
.banner-slide:hover .banner-cta { transform: translateY(-2px); background: #ffb62e; }
.banner-cta svg { width: 15px; height: 15px; }
.banner-graphic { position: absolute; z-index: 2; pointer-events: none; opacity: .7; }
.graphic-orbit { width: 430px; height: 430px; right: 10%; top: 13%; border: 1px solid rgba(243,162,20,.5); border-radius: 50%; box-shadow: inset 0 0 0 72px rgba(243,162,20,.025); }
.graphic-grid { width: 420px; height: 320px; right: 9%; top: 18%; border: 1px solid rgba(243,162,20,.42); transform: perspective(600px) rotateY(-24deg) rotateZ(6deg); }
.graphic-moon { width: 330px; height: 330px; right: 13%; top: 16%; border: 55px solid rgba(243,162,20,.54); border-right-color: transparent; border-radius: 50%; transform: rotate(-35deg); }
.graphic-gate { width: 290px; height: 390px; right: 15%; top: 11%; border: 1px solid rgba(243,162,20,.55); border-bottom: 0; border-radius: 145px 145px 0 0; box-shadow: 0 0 0 45px rgba(243,162,20,.035); }
.graphic-fold { width: 330px; height: 330px; right: 14%; top: 15%; border: 1px solid rgba(243,162,20,.57); transform: rotate(45deg); box-shadow: inset 0 0 0 70px rgba(243,162,20,.035); }
.graphic-signal { width: 350px; height: 350px; right: 12%; top: 15%; border: 1px solid rgba(243,162,20,.55); border-radius: 50%; box-shadow: 0 0 0 55px rgba(243,162,20,.035), 0 0 0 110px rgba(243,162,20,.018); }
.graphic-track { width: 480px; height: 210px; right: 7%; top: 25%; border: 1px solid rgba(243,162,20,.56); border-radius: 50%; transform: rotate(-14deg); box-shadow: inset 0 0 0 35px rgba(243,162,20,.035); }
.carousel-ui { position: absolute; z-index: 5; left: 50%; bottom: 25px; display: grid; grid-template-columns: 90px 1fr auto; align-items: center; gap: 24px; transform: translateX(-50%); }
.carousel-counter { display: flex; align-items: baseline; gap: 5px; color: rgba(248,248,246,.5); font-size: 11px; }
.carousel-counter strong { color: var(--orange); font-size: 22px; line-height: 1; }
.carousel-dots { display: flex; align-items: center; gap: 8px; }
.carousel-dot { position: relative; width: 42px; height: 20px; padding: 0; border: 0; background: transparent; cursor: pointer; }
.carousel-dot::before { content: ''; position: absolute; left: 0; right: 0; top: 9px; height: 2px; background: rgba(248,248,246,.26); transition: background .2s; }
.carousel-dot::after { content: ''; position: absolute; left: 0; top: 9px; width: 0; height: 2px; background: var(--orange); }
.carousel-dot:hover::before { background: rgba(248,248,246,.6); }
.carousel-dot.is-active::after { width: 100%; animation: carouselProgress 5s linear forwards; }
.hero-carousel.is-paused .carousel-dot.is-active::after { animation-play-state: paused; }
@keyframes carouselProgress { from { width: 0; } to { width: 100%; } }
.carousel-actions { display: flex; gap: 7px; }
.carousel-button { display: grid; place-items: center; width: 37px; height: 37px; padding: 0; color: rgba(248,248,246,.75); border: 1px solid rgba(248,248,246,.3); border-radius: 50%; background: rgba(0,0,0,.2); cursor: pointer; transition: color .2s, border-color .2s, background .2s; }
.carousel-button:hover { color: var(--dark); border-color: var(--orange); background: var(--orange); }
.carousel-button svg { width: 16px; height: 16px; }
.detail-main { min-height: 100vh; padding-top: 76px; color: var(--light); background: var(--dark); }
.detail-hero { position: relative; min-height: 620px; display: flex; align-items: flex-end; overflow: hidden; }
.detail-media { position: absolute; inset: 0; opacity: .62; background: #42544f; }
.detail-media::before { content: ''; position: absolute; inset: 10%; border: 1px solid rgba(243,162,20,.5); }
.detail-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.59); }
.detail-resource-note { position: absolute; z-index: 2; top: 96px; right: 9%; display: flex; flex-direction: column; align-items: flex-end; gap: 5px; color: rgba(248,248,246,.38); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.detail-resource-note small { color: var(--orange); font-size: 9px; font-weight: 600; }
.detail-copy { position: relative; z-index: 2; padding-top: 100px; padding-bottom: 70px; }
.detail-back { display: inline-flex; align-items: center; gap: 7px; margin-bottom: 70px; color: rgba(248,248,246,.68); font-size: 11px; font-weight: 700; }
.detail-back:hover { color: var(--orange); }
.detail-back svg { width: 15px; height: 15px; }
.detail-kicker { color: var(--orange); font-size: 10px; font-weight: 800; letter-spacing: .15em; }
.detail-title { margin-bottom: 20px; font-size: 92px; }
.detail-title small { display: block; margin-top: 15px; color: rgba(248,248,246,.58); font-size: 12px; letter-spacing: .12em; }
.detail-summary { max-width: 550px; margin-bottom: 0; color: rgba(248,248,246,.72); font-size: 17px; line-height: 1.8; }
.detail-content { padding: 95px 0 115px; color: var(--ink); background: var(--light); }
.detail-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 90px; }
.detail-facts { display: grid; gap: 23px; margin: 0; }
.detail-facts div { padding-bottom: 17px; border-bottom: 1px solid var(--dark-line); }
.detail-facts dt { margin-bottom: 6px; color: var(--orange-deep); font-size: 9px; font-weight: 800; letter-spacing: .12em; }
.detail-facts dd { margin: 0; font-size: 14px; font-weight: 700; }
.detail-description h2 { margin-bottom: 30px; font-size: 56px; }
.detail-description p { max-width: 650px; color: #656565; font-size: 15px; line-height: 1.95; }
.detail-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-top: 45px; }
.detail-shot { position: relative; aspect-ratio: 16 / 9; display: grid; place-items: center; color: #888; border: 1px solid #d5d5d1; background: #e6e6e1; font-size: 9px; font-weight: 800; letter-spacing: .1em; }
.detail-shot::before { content: ''; position: absolute; inset: 15%; border: 1px solid rgba(32,32,32,.13); }
.detail-theme-1 { background: #42544f; }
.detail-theme-2 { background: #465273; }
.detail-theme-3 { background: #5a586e; }
.detail-theme-4 { background: #5c4d3b; }
.detail-theme-5 { background: #5d6b54; }
.detail-theme-6 { background: #396878; }
.detail-theme-7 { background: #754538; }
@media (max-width: 900px) { .banner-title { font-size: 66px; } .detail-title { font-size: 68px; } .detail-description h2 { font-size: 48px; } .carousel-ui { grid-template-columns: 70px 1fr auto; gap: 16px; } .carousel-dot { width: 28px; } .graphic-orbit, .graphic-grid, .graphic-moon, .graphic-gate, .graphic-fold, .graphic-signal, .graphic-track { right: -6%; transform: scale(.78); transform-origin: center; } .detail-grid { gap: 50px; } }
@media (max-width: 650px) { .hero-banner { padding-top: 68px; } .carousel-viewport { height: clamp(550px, calc(100svh - 94px), 720px); min-height: 550px; } .banner-content { justify-content: flex-end; padding-bottom: 131px; } .banner-content > p { margin-bottom: 14px; font-size: 9px; } .banner-title { max-width: 320px; margin-bottom: 14px; font-size: 46px; line-height: .98; } .banner-title small { margin-top: 11px; font-size: 9px; } .banner-summary { max-width: 280px; font-size: 12px; line-height: 1.7; } .banner-cta { margin-top: 20px; min-height: 40px; padding: 0 14px; font-size: 10px; } .banner-graphic { right: -23% !important; top: 10% !important; transform: scale(.52) !important; } .carousel-ui { left: 16px; right: 16px; bottom: 22px; width: auto; grid-template-columns: 48px 1fr auto; gap: 10px; transform: none; } .carousel-dots { gap: 3px; } .carousel-dot { width: 18px; } .carousel-actions { gap: 4px; } .carousel-button { width: 32px; height: 32px; } .carousel-button svg { width: 14px; height: 14px; } .carousel-counter strong { font-size: 18px; } .detail-main { padding-top: 68px; } .detail-hero { min-height: 600px; } .detail-copy { padding-bottom: 48px; } .detail-back { margin-bottom: 62px; } .detail-title { font-size: 52px; line-height: .96; } .detail-title small { font-size: 9px; } .detail-summary { font-size: 14px; } .detail-content { padding: 72px 0 84px; } .detail-grid { grid-template-columns: 1fr; gap: 55px; } .detail-description h2 { font-size: 42px; } .detail-gallery { grid-template-columns: 1fr; } }
@media (max-width: 900px) { .shell { width: min(100% - 40px, 680px); } .site-nav { gap: 23px; } .about-layout { grid-template-columns: 1fr 1.3fr; gap: 35px; } .about-art { grid-column: 2; min-height: 310px; } .careers-layout, .contact-layout { gap: 45px; } }
@media (max-width: 650px) { .shell { width: calc(100% - 32px); } .site-header { height: 68px; border-right-width: 3px; } .menu-toggle { display: grid; } .site-nav { position: absolute; top: 68px; left: 0; right: 0; height: auto; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px 16px 17px; background: var(--light); border-top: 1px solid var(--dark-line); box-shadow: 0 10px 24px rgba(0,0,0,.13); transform: none; } .site-nav.is-open { display: flex; } .nav-link { padding: 13px 3px; } .nav-link svg { width: 23px; height: 23px; } .nav-dropdown { display: block; } .nav-dropdown-toggle { width: 100%; justify-content: flex-start; } .dropdown-panel { position: static; width: auto; margin: 0 0 4px; padding: 0 0 4px; border: 0; box-shadow: none; opacity: 1; visibility: visible; pointer-events: auto; transform: none; display: none; } .nav-dropdown.is-open .dropdown-panel { display: grid; transform: none; } .dropdown-panel a { grid-template-columns: 24px 1fr 16px; padding: 10px 8px 10px 42px; } .dropdown-panel a > svg { opacity: 1; } .hero-screen { min-height: 100svh; padding-top: 68px; } .hero-logo { width: 82px; height: 82px; } .brand-symbol-large { width: 70px; height: 70px; border-width: 10px; } .brand-symbol-large::before { width: 19px; height: 19px; right: -14px; top: -10px; } .brand-symbol-large::after { width: 17px; height: 17px; left: -14px; bottom: -8px; } .brand-symbol-large > span { width: 24px; height: 10px; bottom: -11px; } h1 { font-size: clamp(38px, 10.5vw, 48px); } h2 { font-size: clamp(38px, 12vw, 56px); } .hero-reserve { width: 100%; height: 65px; flex-direction: column; gap: 2px; } .orbit-one { left: 5%; top: 22%; width: 90px; height: 90px; } .orbit-two { right: 5%; bottom: 18%; } .plus-one { left: 15%; top: 31%; } .plus-two { right: 18%; bottom: 28%; } .edge-note { display: none; } .games-section, .about-section, .careers-section, .contact-section { padding: 82px 0; } .section-header { display: block; margin-bottom: 37px; } .section-summary { margin-top: 21px; } .games-grid { grid-template-columns: 1fr; gap: 15px; } .game-art, .game-card-main .game-art { min-height: 265px; } .game-copy { padding: 20px 19px 25px; } .game-copy-top { font-size: 8px; } .game-copy h3, .game-card:nth-child(2) .game-copy h3 { margin-top: 37px; font-size: 28px; } .round-arrow { right: 18px; bottom: 23px; } .about-layout, .careers-layout, .contact-layout { grid-template-columns: 1fr; gap: 32px; } .about-copy { padding-top: 0; } .about-lede { font-size: 18px; } .about-art { grid-column: auto; min-height: 260px; margin-top: 0; } .about-stats { gap: 20px; margin-top: 36px; } .about-stats strong { font-size: 30px; } .about-stats span { font-size: 8px; } .career-strip { margin-top: 58px; display: block; line-height: 2; } .career-strip span { display: block; } .career-strip span + span { margin-top: 6px; } .contact-email { font-size: 18px; } .footer-top { min-height: 0; flex-wrap: wrap; gap: 20px; padding: 27px 0 22px; } .footer-links { order: 3; width: 100%; margin: 0; gap: 17px; flex-wrap: wrap; font-size: 11px; } .footer-bottom { display: grid; grid-template-columns: 1fr auto; align-items: start; padding: 17px 0; line-height: 1.7; } .footer-bottom > span:nth-child(2) { grid-column: 1 / -1; grid-row: 2; } }

/* Northspark observatory theme */
:root { --dark: #101a17; --dark-deep: #07100d; --light: #edf4ef; --ink: #13201c; --muted: #708078; --orange: #ff6b4a; --orange-deep: #d9472f; --mint: #55d6ad; --acid: #d9f875; --soft-line: rgba(237,244,239,.18); --dark-line: rgba(19,32,28,.16); --sans: 'Manrope', 'Noto Sans SC', 'Microsoft Yahei', sans-serif; }
* { letter-spacing: 0 !important; }
body { color: var(--ink); background: var(--dark-deep); }
a:focus-visible, button:focus-visible { outline: 2px solid var(--acid); outline-offset: 3px; }
.shell { width: min(1240px, calc(100% - 80px)); }
.skip-link { color: var(--dark-deep); background: var(--acid); border-radius: 4px; }
.site-header { inset: 14px 18px auto; width: auto; height: 64px; color: var(--light); background: rgba(7,16,13,.92); border: 1px solid rgba(237,244,239,.2); border-right: 1px solid rgba(237,244,239,.2); border-radius: 6px; box-shadow: 0 12px 34px rgba(0,0,0,.2); backdrop-filter: blur(16px); }
.site-header.is-scrolled { box-shadow: 0 15px 42px rgba(0,0,0,.34); }
.header-inner { height: 62px; }
.brand { gap: 11px; color: var(--light); font-size: 13px; }
.brand-symbol { width: 28px; height: 28px; border: 0; border-radius: 5px; background: var(--orange); transform: rotate(45deg); }
.brand-symbol::before { width: 8px; height: 8px; right: -4px; top: -4px; border: 2px solid var(--dark-deep); border-radius: 2px; background: var(--acid); }
.brand-symbol::after { width: 7px; height: 7px; left: -3px; bottom: -3px; border-radius: 50%; background: var(--mint); }
.brand-symbol > span { width: 11px; height: 3px; right: 8px; bottom: 12px; background: var(--dark-deep); transform: rotate(0); }
.site-nav { top: 0; height: 62px; gap: 6px; }
.nav-link { gap: 7px; padding: 9px 12px; color: rgba(237,244,239,.68); border: 1px solid transparent; border-radius: 4px; font-size: 13px; }
.nav-link svg { width: 18px; height: 18px; color: rgba(237,244,239,.38); }
.nav-link:hover, .nav-link.is-active { color: var(--light); background: rgba(237,244,239,.08); border-color: rgba(237,244,239,.12); }
.nav-link:hover svg, .nav-link.is-active svg { color: var(--mint); transform: none; }
.nav-dropdown-toggle .nav-chevron { color: rgba(237,244,239,.45); }
.dropdown-panel { top: 55px; width: 340px; padding: 8px; color: var(--light); background: #111e1a; border: 1px solid rgba(237,244,239,.16); border-radius: 6px; box-shadow: 0 22px 55px rgba(0,0,0,.34); }
.dropdown-panel a { color: rgba(237,244,239,.72); border-color: rgba(237,244,239,.09); border-radius: 3px; }
.dropdown-panel a:hover { color: var(--light); background: rgba(85,214,173,.1); }
.dropdown-index { color: var(--orange); }
.dropdown-copy small { color: rgba(237,244,239,.38); }
.dropdown-panel a > svg { color: var(--mint); }
.menu-toggle { color: var(--light); }
.hero-banner { padding-top: 0; background: var(--dark-deep); }
.carousel-viewport { height: clamp(700px, 100svh, 960px); min-height: 700px; }
.banner-slide { inset: 0; }
.banner-media { inset: 0; opacity: 1; transform: none; }
.banner-slide.is-active .banner-media { transform: none; }
.banner-media::before { inset: 18% 6% 10% 56%; opacity: 1; background: transparent; border: 1px solid rgba(237,244,239,.16); box-shadow: -16px 16px 0 rgba(7,16,13,.16); }
.banner-media::after { inset: 25% 10% 17% 62%; border: 1px solid rgba(217,248,117,.3); }
.banner-media > span, .banner-media > small { transform: translate(30vw, 0); color: rgba(237,244,239,.46); }
.banner-media > small { color: rgba(237,244,239,.28); }
.banner-theme-1 { background: #16483c; }
.banner-theme-2 { background: #263d67; }
.banner-theme-3 { background: #633d69; }
.banner-theme-4 { background: #6a402e; }
.banner-theme-5 { background: #3f5267; }
.banner-theme-6 { background: #546135; }
.banner-theme-7 { background: #6d2f3a; }
.banner-shade { background: rgba(7,16,13,.38); }
.banner-content { justify-content: flex-end; padding-top: 150px; padding-bottom: 145px; }
.banner-content > p { margin-bottom: 18px; color: var(--acid); font-size: 11px; }
.banner-title { max-width: 850px; margin-bottom: 22px; color: #fff; font-size: 76px; line-height: 1; text-wrap: balance; }
.banner-title small { margin-top: 15px; color: rgba(237,244,239,.58); font-size: 11px; }
.banner-summary { max-width: 460px; color: rgba(237,244,239,.76); font-size: 15px; }
.banner-cta { min-height: 48px; padding: 0 20px; color: var(--dark-deep); background: var(--acid); border-radius: 4px; }
.banner-slide:hover .banner-cta { background: var(--mint); transform: translateY(-2px); }
.banner-graphic { opacity: .68; }
.graphic-orbit, .graphic-grid, .graphic-moon, .graphic-gate, .graphic-fold, .graphic-signal, .graphic-track { right: 10%; border-color: rgba(217,248,117,.52); }
.graphic-orbit { box-shadow: inset 0 0 0 72px rgba(85,214,173,.04); }
.graphic-moon { border-color: rgba(85,214,173,.55); border-right-color: transparent; }
.graphic-fold span { background: rgba(217,248,117,.42); }
.graphic-signal { border-color: rgba(85,214,173,.5); }
.carousel-ui { bottom: 24px; grid-template-columns: 72px 1fr auto; min-height: 66px; padding: 0 18px; background: rgba(7,16,13,.72); border: 1px solid rgba(237,244,239,.18); border-radius: 6px; backdrop-filter: blur(12px); }
.carousel-counter strong { color: var(--acid); }
.carousel-dot { width: 36px; height: 28px; }
.carousel-dot::before { top: 13px; height: 1px; background: rgba(237,244,239,.25); }
.carousel-dot::after { top: 11px; height: 5px; background: var(--mint); border-radius: 3px; }
.carousel-button { width: 38px; height: 38px; color: rgba(237,244,239,.78); background: transparent; border-color: rgba(237,244,239,.22); border-radius: 4px; }
.carousel-button:hover { color: var(--dark-deep); background: var(--acid); border-color: var(--acid); }
.light-section { background: #e7f0e9; }
.about-section { padding: 130px 0 145px; border-top: 8px solid var(--mint); }
.about-layout { grid-template-columns: .7fr 1.3fr .85fr; gap: 64px; }
.about-section .section-kicker, .contact-section .section-kicker { color: var(--orange-deep); }
.about-lede { font-size: 24px; line-height: 1.55; }
.about-body { color: #506159; }
.about-stats { padding-top: 26px; border-top: 1px solid rgba(19,32,28,.18); }
.about-stats strong { color: var(--orange-deep); }
.about-art { min-height: 390px; color: var(--light); background: #172b25; border: 0; border-radius: 6px; box-shadow: 18px 18px 0 var(--orange); }
.about-art::before { inset: 10%; border-color: rgba(217,248,117,.35); transform: none; }
.about-art::after { right: 12%; bottom: 12%; width: 78px; height: 78px; background: var(--mint); border-radius: 50%; }
.about-art span { color: rgba(237,244,239,.58); }
.about-art small, .about-art b { color: var(--acid); }
.careers-section { padding: 130px 0 78px; color: var(--light); background: #12201c; }
.noise { opacity: .12; }
.careers-copy p { color: rgba(237,244,239,.66); }
.orange-button { min-height: 48px; color: var(--dark-deep); background: var(--mint); border-radius: 4px; }
.orange-button:hover { background: var(--acid); }
.career-strip { color: rgba(237,244,239,.38); border-color: rgba(237,244,239,.16); }
.contact-section { color: var(--ink); background: var(--orange); }
.contact-section .section-kicker { color: #5a2118; }
.contact-layout h2 em { color: #fff; }
.contact-email { color: var(--dark-deep); border-color: var(--dark-deep); }
.contact-email:hover { color: #fff; }
.contact-note { color: rgba(19,32,28,.72); }
.site-footer { color: var(--light); background: #07100d; border-color: rgba(237,244,239,.12); }
.footer-links { color: rgba(237,244,239,.55); }
.footer-links a:hover { color: var(--acid); }
.footer-social a { color: rgba(237,244,239,.6); border-color: rgba(237,244,239,.2); border-radius: 4px; }
.footer-social a:hover { color: var(--dark-deep); background: var(--mint); border-color: var(--mint); }
.footer-bottom { color: rgba(237,244,239,.42); border-color: rgba(237,244,239,.12); }
.footer-bottom a { color: rgba(237,244,239,.58); }
.footer-bottom a:hover { color: var(--acid); }
.detail-main { padding-top: 0; background: var(--dark-deep); }
.detail-hero { min-height: 720px; }
.detail-media { opacity: 1; }
.detail-media::before { inset: 18% 7% 12% 56%; border-color: rgba(217,248,117,.34); box-shadow: -18px 18px 0 rgba(7,16,13,.16); }
.detail-overlay { background: rgba(7,16,13,.5); }
.detail-resource-note { top: 120px; color: rgba(237,244,239,.4); }
.detail-resource-note small { color: var(--acid); }
.detail-copy { padding-top: 155px; padding-bottom: 92px; }
.detail-back { margin-bottom: 90px; color: rgba(237,244,239,.66); }
.detail-back:hover, .detail-kicker { color: var(--acid); }
.detail-title { max-width: 920px; margin-bottom: 22px; font-size: 78px; line-height: 1; }
.detail-title small { color: rgba(237,244,239,.55); }
.detail-content { padding: 120px 0 135px; background: #e7f0e9; }
.detail-grid { grid-template-columns: .58fr 1.42fr; gap: 100px; }
.detail-facts div { padding: 18px 0; border-color: rgba(19,32,28,.16); }
.detail-facts dt { color: var(--orange-deep); }
.detail-description h2 { font-size: 54px; line-height: 1.1; }
.detail-description p { color: #506159; }
.detail-shot { color: rgba(237,244,239,.48); background: #19312a; border: 0; border-radius: 5px; }
.detail-shot::before { border-color: rgba(217,248,117,.25); }
.detail-theme-1 { background: #16483c; }
.detail-theme-2 { background: #263d67; }
.detail-theme-3 { background: #633d69; }
.detail-theme-4 { background: #6a402e; }
.detail-theme-5 { background: #3f5267; }
.detail-theme-6 { background: #546135; }
.detail-theme-7 { background: #6d2f3a; }

/* Available promotional artwork for the first two games. */
.banner-theme-1, .detail-theme-1,
.banner-theme-2, .detail-theme-2 {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.banner-theme-1, .detail-theme-1 { background-image: url('assets/promos/game-01.png'); }
.banner-theme-2, .detail-theme-2 { background-image: url('assets/promos/game-02.png'); }
.detail-resource-note[hidden] { display: none; }
.detail-article { display: grid; gap: 34px; max-width: 760px; }
.detail-article-block { display: grid; gap: 13px; }
.detail-article-block + .detail-article-block { padding-top: 30px; border-top: 1px solid rgba(19,32,28,.16); }
.detail-article h3 { margin: 0 0 4px; color: var(--ink); font-size: 27px; line-height: 1.3; }
.detail-article p { max-width: none; margin: 0; color: #506159; font-size: 15px; line-height: 1.95; }
.detail-feature-list { display: grid; gap: 0; margin: 2px 0 0; padding: 0; list-style: none; counter-reset: feature; }
.detail-feature-list li { counter-increment: feature; display: grid; grid-template-columns: 38px 1fr; gap: 12px; padding: 14px 0; color: #40534a; border-top: 1px solid rgba(19,32,28,.13); font-size: 14px; line-height: 1.75; }
.detail-feature-list li::before { content: counter(feature, decimal-leading-zero); color: var(--orange-deep); font-weight: 850; }
.detail-closing { color: var(--orange-deep) !important; font-size: 22px !important; font-weight: 850; }
@media (max-width: 650px) {
  .detail-article { gap: 27px; }
  .detail-article-block + .detail-article-block { padding-top: 24px; }
  .detail-article h3 { font-size: 23px; }
  .detail-feature-list li { grid-template-columns: 32px 1fr; gap: 8px; }
}

@media (max-width: 900px) {
  .shell { width: min(100% - 48px, 760px); }
  .site-nav { gap: 2px; }
  .nav-link { padding-inline: 8px; }
  .banner-title, .detail-title { font-size: 60px; }
  .about-layout { grid-template-columns: 1fr 1fr; }
  .about-copy { grid-column: 1 / -1; max-width: 720px; }
  .about-art { grid-column: 2; }
  .detail-grid { gap: 60px; }
}

@media (max-width: 650px) {
  .shell { width: calc(100% - 32px); }
  .site-header { inset: 8px 10px auto; height: 60px; }
  .header-inner { height: 58px; }
  .brand-symbol { width: 25px; height: 25px; }
  .site-nav { top: 66px; left: -1px; right: -1px; padding: 10px; color: var(--light); background: #0d1915; border: 1px solid rgba(237,244,239,.18); border-radius: 5px; box-shadow: 0 18px 45px rgba(0,0,0,.34); }
  .nav-link { padding: 11px 10px; }
  .nav-dropdown-toggle { justify-content: flex-start; }
  .dropdown-panel { background: transparent; border: 0; }
  .dropdown-panel a { padding: 10px 8px 10px 38px; color: rgba(237,244,239,.7); }
  .hero-banner { padding-top: 0; }
  .carousel-viewport { height: max(680px, 100svh); min-height: 680px; }
  .banner-media::before { inset: 13% 8% 47% 32%; }
  .banner-media::after { inset: 17% 14% 52% 41%; }
  .banner-media > span, .banner-media > small { transform: translate(5vw, -22vh); }
  .banner-content { justify-content: flex-end; padding-top: 120px; padding-bottom: 150px; }
  .banner-title { max-width: 350px; font-size: 42px; line-height: 1.05; }
  .banner-summary { max-width: 310px; font-size: 13px; }
  .banner-graphic { right: -22% !important; top: 9% !important; transform: scale(.48) !important; }
  .carousel-ui { left: 16px; right: 16px; bottom: 16px; min-height: 62px; padding: 0 10px; grid-template-columns: 45px 1fr auto; gap: 8px; transform: none; }
  .carousel-dot { width: 17px; }
  .carousel-actions { gap: 3px; }
  .carousel-button { width: 32px; height: 32px; }
  .about-section, .careers-section, .contact-section { padding: 88px 0; }
  .about-layout, .careers-layout, .contact-layout { grid-template-columns: 1fr; gap: 34px; }
  .about-copy { grid-column: auto; }
  .about-art { grid-column: auto; min-height: 300px; margin: 6px 12px 16px 0; box-shadow: 12px 12px 0 var(--orange); }
  .about-stats { gap: 18px; }
  .footer-top { padding: 30px 0 24px; }
  .footer-bottom { grid-template-columns: 1fr; gap: 8px; padding: 18px 0 22px; }
  .footer-bottom > * { grid-column: auto !important; grid-row: auto !important; }
  .detail-main { padding-top: 0; }
  .detail-hero { min-height: 700px; }
  .detail-resource-note { top: 94px; right: 20px; }
  .detail-copy { padding-top: 130px; padding-bottom: 64px; }
  .detail-back { margin-bottom: 82px; }
  .detail-title { max-width: 350px; font-size: 44px; line-height: 1.05; overflow-wrap: anywhere; }
  .detail-content { padding: 82px 0 94px; }
  .detail-grid { grid-template-columns: 1fr; gap: 62px; }
  .detail-description h2 { font-size: 40px; }
}

/* Compliance footer: a centered brand lockup with clear information hierarchy. */
.site-footer { display: block; width: 100%; color: #8f9894; background: #fff; border-top: 1px solid #e8edeb; }
.footer-compliance { box-sizing: border-box; width: min(100% - 32px, 820px); min-height: 372px; margin-inline: auto; padding: 70px 24px 44px; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; text-align: center; }
.footer-compliance::before { content: ''; width: 54px; height: 3px; margin-bottom: 28px; background: #f2a23a; box-shadow: 20px 0 0 #e5ebe8; }
.footer-brand-lockup { display: inline-flex; align-items: center; gap: 14px; padding: 0 0 24px; color: #1d2220; border-bottom: 1px solid #edf0ef; }
.footer-brand-lockup:hover { color: #1d2220; }
.footer-mark { position: relative; display: inline-block; width: 52px; height: 52px; border: 8px solid #f5a13b; border-left-color: transparent; border-radius: 50%; transform: rotate(-35deg); }
.footer-mark::before { content: ''; position: absolute; width: 15px; height: 15px; right: -12px; top: -10px; border-radius: 50%; background: #f5a13b; }
.footer-mark::after { content: ''; position: absolute; width: 11px; height: 11px; left: -10px; bottom: -8px; border-radius: 50%; background: #f5a13b; }
.footer-mark > span { position: absolute; width: 19px; height: 7px; right: -4px; bottom: -9px; background: #f5a13b; transform: rotate(-25deg); }
.footer-brand-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; line-height: 1; }
.footer-brand-copy strong { color: #151918; font-size: 32px; font-weight: 900; letter-spacing: 0 !important; }
.footer-brand-copy small { align-self: center; color: #151918; font-size: 8px; font-weight: 800; letter-spacing: .36em !important; text-indent: .36em; }
.footer-company { margin: 29px 0 0; color: #596460; font-size: 14px; font-weight: 750; line-height: 1.6; }
.footer-company i { display: inline-block; width: 4px; height: 4px; margin: 0 9px 3px; border-radius: 50%; background: #f2a23a; }
.footer-health { max-width: 720px; margin: 16px 0 0; color: #98a19d; font-size: 13px; font-weight: 600; line-height: 1.8; }
.footer-filing { display: inline-flex; align-items: center; gap: 8px; margin-top: 19px; padding: 7px 14px; color: #69746f; font-size: 12px; font-weight: 700; border: 1px solid #e2e8e5; border-radius: 999px; }
.footer-filing::before { content: 'ICP备案'; padding-right: 8px; color: #f2a23a; font-size: 10px; font-weight: 800; border-right: 1px solid #e2e8e5; }
.footer-filing:hover { color: #252d29; border-color: #cbd6d1; }
.footer-copyright { margin: 14px 0 0; color: #b6bfbb; font-size: 11px; }
@media (max-width: 650px) {
  .footer-compliance { width: min(100% - 24px, 820px); min-height: 350px; padding: 56px 12px 35px; }
  .footer-brand-lockup { gap: 11px; padding-bottom: 21px; }
  .footer-mark { width: 45px; height: 45px; border-width: 7px; }
  .footer-brand-copy strong { font-size: 27px; }
  .footer-company { margin-top: 27px; font-size: 12px; }
  .footer-company i { margin-inline: 5px; }
  .footer-health { max-width: 340px; font-size: 11px; }
  .footer-filing { margin-top: 16px; font-size: 11px; }
}

/* Gaming identity: a compact controller mark shared by the header and footer. */
.brand-symbol,
.footer-mark {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  border: 0;
  border-radius: 0;
  background: var(--orange);
  clip-path: polygon(14% 6%, 86% 6%, 100% 55%, 94% 91%, 82% 100%, 66% 65%, 34% 65%, 18% 100%, 6% 91%, 0 55%);
  transform: none;
}
.brand-symbol { width: 36px; height: 28px; }
.brand-symbol::before,
.footer-mark::before {
  content: '';
  position: absolute;
  left: 18%;
  top: 29%;
  right: auto;
  bottom: auto;
  width: 29%;
  height: 37%;
  border: 0;
  border-radius: 0;
  background: var(--dark-deep);
  clip-path: polygon(38% 0, 62% 0, 62% 38%, 100% 38%, 100% 62%, 62% 62%, 62% 100%, 38% 100%, 38% 62%, 0 62%, 0 38%, 38% 38%);
}
.brand-symbol::after,
.footer-mark::after {
  content: '';
  position: absolute;
  left: auto;
  right: 20%;
  top: 28%;
  bottom: auto;
  width: 18%;
  height: 23%;
  border: 0;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: -9px 6px 0 var(--mint);
}
.brand-symbol > span,
.footer-mark > span {
  position: absolute;
  left: 42%;
  right: auto;
  bottom: 18%;
  width: 18%;
  height: 8%;
  border-radius: 2px;
  background: var(--dark-deep);
  transform: none;
}
.footer-mark { width: 66px; height: 50px; background: #f5a13b; }
.footer-mark::before,
.footer-mark > span { background: #151918; }
.footer-mark::after { background: var(--acid); box-shadow: -15px 10px 0 var(--mint); }
.career-email { min-height: 62px; padding: 10px 18px; gap: 12px; text-align: left; }
.career-email > svg { width: 20px; height: 20px; flex: 0 0 auto; }
.career-email > span { display: flex; flex-direction: column; gap: 3px; }
.career-email small { color: rgba(7,16,13,.62); font-size: 10px; font-weight: 800; }
.career-email strong { font-size: 14px; font-weight: 850; }
@media (max-width: 650px) {
  .brand-symbol { width: 32px; height: 25px; }
  .footer-mark { width: 58px; height: 44px; }
  .career-email { width: 100%; max-width: 330px; padding-inline: 14px; }
  .career-email strong { font-size: 12px; overflow-wrap: anywhere; }
}

/* The supplied artwork replaces the former placeholder geometry. */
.banner-media::before,
.banner-media::after,
.banner-graphic,
.banner-shade {
  display: none;
}
