/*
 * Style reminder: retro-futurist arcade storefront. The canvas is near-black;
 * cyan/magenta provide directional light; Arcade Amber (#FFB82E) owns action
 * states. Typography pairs Barlow Condensed, DM Sans, and Noto Sans Myanmar.
 */
@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700;800&family=DM+Sans:wght@400;500;600;700&family=Noto+Sans+Myanmar:wght@400;500;600;700&display=swap");
@import "tailwindcss";
@import "tw-animate-css";

@custom-variant dark (&:is(.dark *));

@theme inline {
  --color-background: var(--background);
  --color-foreground: var(--foreground);
  --color-card: var(--card);
  --color-card-foreground: var(--card-foreground);
  --color-border: var(--border);
  --color-input: var(--input);
  --color-ring: var(--ring);
}

:root {
  --background: #06070b;
  --foreground: #f4f5f7;
  --card: #0e1118;
  --card-foreground: #f4f5f7;
  --border: rgba(255, 255, 255, 0.1);
  --input: rgba(255, 255, 255, 0.13);
  --ring: #1ee8ff;
  --amber: #ffb82e;
  --cyan: #1ee8ff;
  --pink: #ff2dbe;
  --muted: #9297a7;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: "DM Sans", "Noto Sans Myanmar", sans-serif;
  -webkit-font-smoothing: antialiased;
}
button, a { font: inherit; }
a { color: inherit; text-decoration: none; }
button { border: 0; }

.storefront { min-height: 100vh; position: relative; overflow: hidden; background: #06070b; }
.storefront::before { content: ""; position: fixed; inset: 0; pointer-events: none; opacity: .08; z-index: 10; background-image: linear-gradient(rgba(255,255,255,.35) 1px, transparent 1px); background-size: 100% 4px; mix-blend-mode: screen; }
.ambient { position: fixed; width: 30rem; height: 30rem; border-radius: 50%; filter: blur(100px); opacity: .1; pointer-events: none; z-index: 0; }
.ambient-one { top: 15%; left: -18rem; background: var(--cyan); }
.ambient-two { right: -18rem; top: 50%; background: var(--pink); }
.section-shell, .site-header, .site-footer, .signal-strip { position: relative; z-index: 1; }
.section-shell { width: min(1240px, calc(100% - 48px)); margin: 0 auto; }

.site-header { border-bottom: 1px solid rgba(255,255,255,.08); background: rgba(6,7,11,.78); backdrop-filter: blur(18px); position: sticky; top: 0; z-index: 30; }
.header-inner { width: min(1320px, calc(100% - 48px)); height: 78px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand-lockup { display: inline-flex; align-items: center; gap: 11px; min-width: 180px; }
.official-logo { display: block; width: 72px; height: 72px; object-fit: contain; }
.official-logo-page { width: 75px; height: 75px; }
.brand-mark-frame { width: 37px; height: 37px; display: grid; place-items: center; border: 1px solid rgba(30,232,255,.7); transform: skew(-7deg); background: rgba(30,232,255,.07); box-shadow: 0 0 24px rgba(30,232,255,.16); }
.brand-mark-frame img { width: 27px; height: 27px; object-fit: contain; transform: skew(7deg); }
.brand-wordmark { display: flex; align-items: baseline; gap: 7px; font-family: "Barlow Condensed", sans-serif; letter-spacing: .1em; }
.brand-wordmark strong { font-size: 1.17rem; font-weight: 800; letter-spacing: .12em; }
.brand-a { display: inline-block; color: var(--cyan); transform: skew(-12deg); text-shadow: 0 0 12px rgba(30,232,255,.45); }
.brand-m { display: inline-block; color: transparent; background: linear-gradient(90deg, #f4f5f7 0 43%, transparent 43% 57%, #f4f5f7 57%); -webkit-background-clip: text; background-clip: text; }
.brand-wordmark small { color: var(--cyan); font-size: .61rem; letter-spacing: .18em; }
.main-nav { display: flex; align-items: center; gap: 34px; color: #8e93a3; font-size: .79rem; text-transform: uppercase; letter-spacing: .12em; }
.main-nav a { transition: color .2s var(--ease-out); }
.main-nav a:hover, .main-nav a.active { color: var(--foreground); }
.main-nav a.active::after { content: ""; display: block; width: 16px; height: 2px; margin-top: 7px; background: var(--amber); box-shadow: 0 0 10px var(--amber); }
.nav-divider { width: 1px; height: 18px; background: rgba(255,255,255,.18); }
.main-nav a[href="/steam-keys"], .main-nav a[href="/steamcheap-app"] { color: var(--amber); font-size: .68rem; }
.header-cta { display: inline-flex; align-items: center; gap: 8px; padding: 11px 15px; border: 1px solid rgba(255,184,46,.55); color: var(--amber); font-size: .72rem; text-transform: uppercase; letter-spacing: .13em; transition: background .2s, color .2s, transform .2s; }
.header-cta:hover { background: var(--amber); color: #101116; transform: translateY(-2px); }

.hero-section { min-height: 650px; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr); align-items: center; gap: clamp(32px, 7vw, 110px); padding-top: 78px; padding-bottom: 92px; }
.hero-backdrop { position: absolute; inset: 0 -60px; z-index: -1; opacity: .63; background: linear-gradient(90deg, rgba(6,7,11,.98) 0%, rgba(6,7,11,.7) 43%, rgba(6,7,11,.15) 100%), url("/assets/steam-hero-neon.jpg") center / cover; mask-image: linear-gradient(90deg, black 0%, black 72%, transparent 100%); }
.hero-gridline { position: absolute; bottom: 54px; left: -10vw; right: -10vw; height: 1px; background: linear-gradient(90deg, transparent, rgba(30,232,255,.6), rgba(255,45,190,.7), transparent); box-shadow: 0 0 23px var(--cyan); opacity: .7; }
.eyebrow, .eyebrow-line { font-size: .69rem; text-transform: uppercase; letter-spacing: .19em; color: var(--amber); font-weight: 700; }
.eyebrow-line { display: flex; align-items: center; gap: 10px; color: var(--cyan); }
.eyebrow-line span { width: 32px; height: 1px; background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: "Barlow Condensed", "Noto Sans Myanmar", sans-serif; }
h1 { margin: 21px 0 21px; font-size: clamp(4.5rem, 8.5vw, 8.8rem); line-height: .82; text-transform: uppercase; letter-spacing: -.035em; font-weight: 700; }
h1 em, h2 em { color: var(--cyan); font-style: normal; text-shadow: 0 0 22px rgba(30,232,255,.28); }
.hero-lede { width: min(520px, 100%); color: #b7bbc7; line-height: 1.72; font-size: .97rem; }
.burmese-note { color: var(--amber) !important; font-family: "Noto Sans Myanmar", sans-serif; font-size: .76rem !important; line-height: 1.75 !important; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; margin: 31px 0 42px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 19px; text-transform: uppercase; letter-spacing: .1em; font-size: .72rem; font-weight: 700; transition: transform .2s var(--ease-out), box-shadow .2s, background .2s; }
.button:hover { transform: translateY(-3px); }
.button-amber { color: #15120b; background: var(--amber); box-shadow: 0 0 25px rgba(255,184,46,.2); }
.button-amber:hover { background: #ffd269; box-shadow: 0 0 36px rgba(255,184,46,.38); }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: #c4c8d2; font-size: .77rem; border-bottom: 1px solid rgba(255,255,255,.25); padding-bottom: 4px; }
.text-link:hover { color: var(--cyan); border-color: var(--cyan); }
.hero-metrics { display: flex; gap: clamp(22px, 4vw, 50px); border-top: 1px solid rgba(255,255,255,.14); padding-top: 18px; }
.hero-metrics div { display: grid; gap: 2px; }
.hero-metrics strong { font-family: "Barlow Condensed"; color: #f5f6f9; font-size: 1.6rem; letter-spacing: .03em; }
.hero-metrics span { color: #7e8492; font-size: .63rem; text-transform: uppercase; letter-spacing: .09em; }
.hero-visual-stack { position: relative; justify-self: end; width: min(100%, 445px); }
.hero-feature { position: relative; width: 100%; padding: 17px; background: rgba(10,12,18,.72); border: 1px solid rgba(30,232,255,.45); box-shadow: 0 0 0 1px rgba(255,45,190,.15), 0 25px 70px rgba(0,0,0,.48); transform: rotate(2.1deg); }
.hero-feature::before { content: ""; position: absolute; top: -1px; left: 27px; width: 80px; height: 2px; background: var(--pink); box-shadow: 0 0 18px var(--pink); }
.hero-feature img { display: block; width: 100%; aspect-ratio: 1; object-fit: cover; }
.feature-card-label { display: flex; align-items: center; gap: 7px; position: absolute; top: 31px; left: 31px; z-index: 2; color: #101116; background: var(--amber); padding: 8px 10px; font-size: .63rem; font-weight: 700; letter-spacing: .12em; }
.feature-card-foot { display: flex; justify-content: space-between; align-items: flex-end; padding: 17px 5px 1px; }
.feature-card-foot span { display: block; color: var(--cyan); font-size: .62rem; letter-spacing: .16em; margin-bottom: 5px; }
.feature-card-foot strong { font-family: "Barlow Condensed"; text-transform: uppercase; font-size: 1.6rem; letter-spacing: .03em; }
.feature-card-foot a { display: grid; place-items: center; width: 40px; height: 40px; color: var(--amber); border: 1px solid rgba(255,184,46,.6); }
.companion-card { position: relative; z-index: 3; display: grid; grid-template-columns: 1fr 112px; align-items: center; gap: 12px; margin: -8px 20px 0 -20px; padding: 12px 13px; color: #f4f5f7; border: 1px solid rgba(255,184,46,.5); background: rgba(13,15,22,.95); box-shadow: 0 13px 28px rgba(0,0,0,.35); transition: transform .2s var(--ease-out), border .2s; }
.companion-card:hover { transform: translateY(-4px); border-color: var(--cyan); }
.companion-copy span { display: block; color: var(--amber); font-size: .56rem; letter-spacing: .14em; margin-bottom: 3px; }
.companion-copy strong { display: block; font-family: "Barlow Condensed"; font-size: 1.35rem; letter-spacing: .06em; }
.companion-copy small { display: block; color: #8e94a1; font-size: .62rem; margin-top: 3px; }
.companion-card img { display: block; width: 112px; height: 66px; object-fit: cover; object-position: center; border: 1px solid rgba(30,232,255,.36); }
.companion-arrow { position: absolute; right: 6px; top: 6px; color: var(--cyan); }
.feature-orbit { position: absolute; border: 1px solid rgba(30,232,255,.25); border-radius: 50%; pointer-events: none; }
.orbit-one { width: 520px; height: 250px; right: -100px; top: 42%; transform: rotate(-18deg); }
.orbit-two { width: 450px; height: 220px; right: -80px; top: 43%; transform: rotate(29deg); border-color: rgba(255,45,190,.28); }

.signal-strip { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); background: rgba(12,14,21,.86); }
.signal-strip div { min-height: 77px; display: flex; align-items: center; justify-content: center; gap: 10px; border-right: 1px solid rgba(255,255,255,.08); color: #b7bac5; font-size: .71rem; letter-spacing: .06em; text-transform: uppercase; }
.signal-strip div:last-child { border-right: 0; }
.signal-strip svg { color: var(--cyan); }

.catalog-section { padding-top: 122px; padding-bottom: 130px; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; }
.split-heading > div { min-width: 380px; }
h2 { margin: 13px 0 0; font-size: clamp(3.2rem, 6.3vw, 6.4rem); line-height: .82; text-transform: uppercase; letter-spacing: -.02em; }
.section-heading > p { max-width: 405px; color: #8f95a3; font-size: .88rem; line-height: 1.75; margin-bottom: 8px; }
.filter-row { display: flex; gap: 8px; flex-wrap: wrap; margin: 58px 0 26px; }
.filter-button { color: #838895; border: 1px solid rgba(255,255,255,.13); background: transparent; padding: 10px 14px; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; transition: color .2s, border .2s, background .2s; }
.filter-button:hover { color: #eef0f5; border-color: rgba(30,232,255,.6); }
.filter-button.active { color: #0a0b0e; background: var(--amber); border-color: var(--amber); }
.catalog-note { display: flex; align-items: center; gap: 9px; margin: 5px 0 19px; color: var(--amber); font-family: "Noto Sans Myanmar", sans-serif; font-size: .69rem; }
.catalog-note svg { color: var(--amber); }
.catalog-note-line { flex: 1; height: 1px; background: linear-gradient(90deg, rgba(255,184,46,.65), transparent); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: start; }
.product-card { position: relative; overflow: hidden; background: #0c0f16; border: 1px solid rgba(255,255,255,.11); transition: transform .3s var(--ease-out), border .3s, box-shadow .3s; }
.product-card:first-child { grid-column: span 2; display: grid; grid-template-columns: 1.08fr .92fr; }
.product-card:first-child .product-art-wrap { min-height: 100%; }
.product-card:first-child .product-art { height: 100%; aspect-ratio: auto; object-fit: cover; }
.product-card:nth-child(3) { margin-top: 22px; }
.product-card:hover { transform: translateY(-7px); border-color: rgba(30,232,255,.52); box-shadow: 0 20px 50px rgba(0,0,0,.4), 0 0 25px rgba(30,232,255,.08); }
.product-art-wrap { position: relative; overflow: hidden; background: #07080d; }
.product-art { display: block; width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform .7s var(--ease-out); }
.product-card:hover .product-art { transform: scale(1.045); }
.product-art-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,6,9,.02) 45%, rgba(5,6,9,.7) 100%); }
.product-tag, .product-index { position: absolute; top: 13px; z-index: 2; padding: 6px 8px; font-size: .58rem; text-transform: uppercase; letter-spacing: .13em; }
.product-tag { left: 13px; color: #07080c; background: var(--amber); }
.product-index { right: 13px; color: #e9edf3; border: 1px solid rgba(255,255,255,.25); background: rgba(4,5,8,.48); }
.product-copy { padding: 19px 19px 21px; }
.product-heading-row { display: flex; justify-content: space-between; gap: 15px; }
.product-heading-row .eyebrow { font-size: .57rem; margin-bottom: 5px; color: var(--cyan); }
.product-heading-row h3 { margin: 0; color: #f4f5f7; font-size: 1.55rem; text-transform: uppercase; line-height: .95; }
.card-arrow { color: var(--amber); transition: transform .2s; }
.product-card:hover .card-arrow { transform: translate(3px, -3px); }
.product-description { color: #8f95a2; font-size: .78rem; line-height: 1.65; margin: 16px 0; min-height: 42px; }
.product-meta { display: flex; flex-wrap: wrap; gap: 12px; padding: 11px 0; border-top: 1px solid rgba(255,255,255,.09); border-bottom: 1px solid rgba(255,255,255,.09); color: #aeb3bf; font-size: .68rem; }
.product-meta span { display: inline-flex; align-items: center; gap: 5px; }
.product-meta svg { color: var(--cyan); }
.product-link { display: inline-flex; align-items: center; gap: 3px; margin-top: 16px; color: var(--amber); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
.product-link:hover { color: #ffe19b; }
.accent-pink .product-tag { background: #ff52cd; }
.accent-amber .product-tag { background: var(--amber); }
.accent-blue .product-tag { background: #75b8ff; }

.about-section { display: grid; grid-template-columns: 1fr .83fr; gap: clamp(40px, 9vw, 140px); align-items: center; padding: 110px 0 134px; border-top: 1px solid rgba(255,255,255,.1); }
.about-checks { display: grid; gap: 12px; margin-top: 28px; color: #ced1da; font-size: .78rem; }
.about-checks span { display: flex; align-items: center; gap: 8px; }
.about-checks svg { color: var(--amber); }
.about-poster { position: relative; padding: 15px; border: 1px solid rgba(30,232,255,.37); background: #0b0d12; }
.about-poster::before { content: "FIELD NOTE / 01"; position: absolute; top: -10px; right: 22px; padding: 5px 9px; color: #07080c; background: var(--cyan); font-size: .59rem; letter-spacing: .12em; }
.about-poster img { display: block; width: 100%; aspect-ratio: 1; object-fit: cover; }

.contact-section { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: end; min-height: 380px; padding: 78px 72px 72px; overflow: hidden; border: 1px solid rgba(255,184,46,.33); background: #0d1016; }
.contact-backdrop { position: absolute; inset: 0; z-index: -1; opacity: .52; background: linear-gradient(90deg, rgba(8,9,13,.98) 0%, rgba(8,9,13,.8) 50%, rgba(8,9,13,.35) 100%), url("/assets/steam-support-panel.jpg") center / cover; }
.contact-copy h2 { margin-bottom: 20px; }
.contact-note { display: flex; align-items: flex-start; gap: 10px; padding: 14px 17px; color: #d2d5db; border: 1px solid rgba(255,255,255,.17); background: rgba(5,6,9,.6); font-size: .72rem; line-height: 1.55; }
.contact-note svg { color: var(--amber); margin-top: 2px; }
.contact-note strong { color: var(--amber); font-weight: 500; }
.contact-note b { color: var(--amber); font-family: "Noto Sans Myanmar", sans-serif; font-weight: 500; }

.site-footer { width: min(1240px, calc(100% - 48px)); margin: 0 auto; padding: 62px 0 25px; }
.footer-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 45px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-top p { margin: 0; color: #858b99; font-size: .75rem; }
.footer-top > a { display: inline-flex; gap: 6px; align-items: center; color: var(--cyan); font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 21px; color: #666c7b; font-size: .65rem; letter-spacing: .04em; }

@media (max-width: 900px) {
  .hero-section { grid-template-columns: 1fr; padding-top: 61px; }
  .hero-visual-stack { justify-self: start; width: min(100%, 460px); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card:first-child { grid-column: auto; display: block; }
  .product-card:first-child .product-art-wrap { min-height: 0; }
  .product-card:first-child .product-art { height: auto; aspect-ratio: 1; }
  .product-card:nth-child(3) { margin-top: 0; }
  .about-section { grid-template-columns: 1fr; }
  .about-poster { width: min(100%, 540px); }
  .about-poster { justify-self: end; }
}
@media (max-width: 680px) {
  .section-shell, .site-footer { width: min(100% - 32px, 1240px); }
  .header-inner { width: calc(100% - 32px); height: 71px; }
  .main-nav { gap: 14px; font-size: .61rem; }
  .header-cta { display: none; }
  .brand-lockup { min-width: 0; }
  .brand-wordmark strong { font-size: 1rem; }
  .brand-wordmark small { display: none; }
  .hero-section { min-height: auto; padding-bottom: 70px; }
  .companion-card { margin-left: -7px; margin-right: 7px; }
  h1 { font-size: clamp(4rem, 19vw, 6rem); }
  .hero-lede { font-size: .84rem; }
  .hero-metrics { gap: 15px; }
  .hero-metrics strong { font-size: 1.35rem; }
  .hero-metrics span { font-size: .54rem; }
  .signal-strip { grid-template-columns: repeat(2, 1fr); }
  .signal-strip div { min-height: 62px; justify-content: flex-start; padding: 0 15px; font-size: .58rem; }
  .section-heading { display: block; }
  .split-heading > div { min-width: 0; }
  .section-heading > p { margin-top: 25px; }
  h2 { font-size: clamp(3.2rem, 17vw, 5rem); }
  .catalog-section { padding-top: 80px; padding-bottom: 80px; }
  .filter-row { margin-top: 35px; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .filter-button { white-space: nowrap; }
  .product-grid { grid-template-columns: 1fr; }
  .product-description { min-height: 0; }
  .about-section { padding: 76px 0 88px; }
  .contact-section { display: block; padding: 52px 28px 54px; }
  .contact-note { margin-top: 35px; width: max-content; max-width: 100%; }
  .footer-top { align-items: flex-start; flex-direction: column; padding-bottom: 30px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* SCG App page: supplied screenshots stay untouched and are framed as product
   evidence inside a dark, cyan/magenta/amber product-story layout. */
.scg-page { min-height: 100vh; color: #f4f5f7; background: #06070b; overflow: hidden; }
.scg-shell { width: min(1240px, calc(100% - 48px)); margin: 0 auto; }
.scg-header { position: sticky; top: 0; z-index: 30; border-bottom: 1px solid rgba(255,255,255,.1); background: rgba(6,7,11,.84); backdrop-filter: blur(18px); }
.scg-header-inner { width: min(1320px, calc(100% - 48px)); height: 78px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.scg-back, .scg-header-link { display: inline-flex; align-items: center; gap: 8px; color: #a9afbd; font-size: .69rem; text-transform: uppercase; letter-spacing: .12em; transition: color .2s var(--ease-out); }
.scg-back:hover, .scg-header-link:hover { color: var(--amber); }
.scg-brand { display: inline-flex; align-items: center; gap: 10px; font-family: "Barlow Condensed", sans-serif; }
.scg-brand-mark { display: grid; place-items: center; width: 37px; height: 37px; border: 1px solid rgba(30,232,255,.7); background: rgba(30,232,255,.07); transform: skew(-7deg); }
.scg-brand-mark img { width: 27px; height: 27px; object-fit: contain; transform: skew(7deg); }
.scg-brand strong { display: block; font-size: 1.12rem; letter-spacing: .13em; }
.scg-brand strong span { color: var(--cyan); }
.scg-brand small { display: block; color: var(--cyan); font-family: "DM Sans", sans-serif; font-size: .52rem; letter-spacing: .26em; text-align: right; }
.scg-hero { position: relative; display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr); align-items: center; gap: clamp(42px, 7vw, 105px); padding-top: 82px; padding-bottom: 91px; }
.scg-hero::before { content: ""; position: absolute; inset: 0 -60px; z-index: -2; opacity: .48; background: linear-gradient(90deg, rgba(6,7,11,.98) 0%, rgba(6,7,11,.72) 52%, rgba(6,7,11,.16) 100%), url("/assets/steam-hero-neon.jpg") center / cover; }
.scg-hero-lines { position: absolute; left: -10vw; right: -10vw; bottom: 33px; height: 1px; z-index: -1; background: linear-gradient(90deg, transparent, var(--cyan), var(--pink), transparent); box-shadow: 0 0 23px var(--cyan); opacity: .65; }
.scg-hero-copy { min-width: 0; }
.scg-eyebrow { display: flex; align-items: center; gap: 9px; margin: 0 0 19px; color: var(--amber); font-size: .68rem; text-transform: uppercase; letter-spacing: .18em; font-weight: 700; }
.scg-eyebrow span { width: 31px; height: 1px; background: var(--amber); box-shadow: 0 0 9px var(--amber); }
.scg-hero h1 { margin: 0 0 24px; font-family: "Barlow Condensed"; font-size: clamp(4.4rem, 8vw, 8rem); line-height: .82; text-transform: uppercase; letter-spacing: -.03em; }
.scg-hero h1 em, .scg-section-heading h2 em, .scg-cta h2 em { color: var(--cyan); font-style: normal; text-shadow: 0 0 22px rgba(30,232,255,.3); }
.scg-intro { color: #c2c6d1; font-family: "Noto Sans Myanmar", "DM Sans", sans-serif; font-size: .88rem; line-height: 1.95; }
.scg-lead-note { color: var(--amber); font-family: "Noto Sans Myanmar", sans-serif; font-size: .94rem; line-height: 1.8; font-weight: 600; }
.scg-button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 14px 18px; color: #16120a; background: var(--amber); text-transform: uppercase; letter-spacing: .1em; font-size: .69rem; font-weight: 700; box-shadow: 0 0 25px rgba(255,184,46,.18); transition: transform .2s var(--ease-out), background .2s, box-shadow .2s; }
.scg-button:hover { transform: translateY(-3px); background: #ffd269; box-shadow: 0 0 34px rgba(255,184,46,.34); }
.scg-hero-poster { position: relative; padding: 17px; border: 1px solid rgba(30,232,255,.45); background: rgba(10,12,18,.76); box-shadow: 0 0 0 1px rgba(255,45,190,.15), 0 25px 70px rgba(0,0,0,.5); transform: rotate(2deg); }
.scg-hero-poster::before { content: ""; position: absolute; top: -1px; left: 27px; width: 83px; height: 2px; background: var(--pink); box-shadow: 0 0 18px var(--pink); }
.scg-poster-badge { position: absolute; top: 31px; left: 31px; z-index: 2; padding: 8px 10px; color: #101116; background: var(--amber); font-size: .6rem; font-weight: 700; letter-spacing: .12em; }
.scg-hero-poster img { display: block; width: 100%; aspect-ratio: 1; object-fit: cover; }
.scg-poster-foot { display: flex; justify-content: space-between; align-items: center; padding: 15px 4px 0; }
.scg-poster-foot span { color: var(--amber); font-size: .6rem; letter-spacing: .12em; }
.scg-poster-foot strong { font-family: "Barlow Condensed"; font-size: 1.4rem; letter-spacing: .05em; }
.scg-marquee { display: flex; justify-content: center; align-items: center; gap: 18px; min-height: 58px; border-top: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); color: #a5abb8; font-size: .64rem; text-transform: uppercase; letter-spacing: .16em; }
.scg-marquee i { width: 5px; height: 5px; background: var(--cyan); box-shadow: 0 0 9px var(--cyan); }
.scg-features, .scg-gallery { padding-top: 115px; padding-bottom: 115px; }
.scg-section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 48px; }
.scg-section-heading h2 { margin: 11px 0 0; font-family: "Barlow Condensed"; font-size: clamp(3.4rem, 6.1vw, 6.2rem); line-height: .82; text-transform: uppercase; }
.scg-section-heading > p { max-width: 425px; color: #969ca9; font-family: "Noto Sans Myanmar", "DM Sans", sans-serif; font-size: .86rem; line-height: 1.85; }
.scg-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 52px; }
.scg-feature-card { min-height: 226px; padding: 21px; border: 1px solid rgba(255,255,255,.12); background: linear-gradient(145deg, rgba(18,20,28,.98), rgba(8,10,15,.96)); transition: transform .25s var(--ease-out), border .25s, box-shadow .25s; }
.scg-feature-card:hover { transform: translateY(-6px); border-color: rgba(30,232,255,.55); box-shadow: 0 18px 42px rgba(0,0,0,.34); }
.scg-feature-top { display: flex; align-items: center; justify-content: space-between; color: var(--cyan); }
.scg-feature-top span { color: var(--amber); font-family: "Barlow Condensed"; font-size: 1.4rem; }
.scg-feature-card h3 { margin: 31px 0 9px; font-family: "Barlow Condensed"; font-size: 1.55rem; line-height: .95; text-transform: uppercase; }
.scg-feature-card p { margin: 0; color: #989eaa; font-family: "Noto Sans Myanmar", "DM Sans", sans-serif; font-size: .75rem; line-height: 1.75; }
.scg-gallery { border-top: 1px solid rgba(255,255,255,.1); }
.scg-gallery-grid { display: grid; grid-template-columns: 1.16fr .84fr; gap: 17px; margin-top: 54px; }
.scg-gallery-card { position: relative; margin: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.13); background: #0d1017; }
.scg-gallery-card img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease-out); }
.scg-gallery-card:hover img { transform: scale(1.025); }
.scg-gallery-1 { grid-row: span 2; min-height: 580px; }
.scg-gallery-2, .scg-gallery-3 { min-height: 281px; }
.scg-gallery-4, .scg-gallery-5 { min-height: 281px; }
.scg-gallery-card figcaption { position: absolute; left: 0; right: 0; bottom: 0; display: flex; justify-content: space-between; align-items: center; padding: 13px 15px; color: #eef0f4; background: linear-gradient(transparent, rgba(5,6,10,.9)); font-size: .62rem; letter-spacing: .12em; }
.scg-gallery-card figcaption svg { color: var(--amber); }
.scg-cta { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-top: 16px; margin-bottom: 95px; padding: 56px 66px; border: 1px solid rgba(255,184,46,.35); background: linear-gradient(90deg, rgba(13,15,22,.98), rgba(13,15,22,.56)), url("/assets/steam-support-panel.jpg") center / cover; }
.scg-cta h2 { margin: 11px 0 17px; font-family: "Barlow Condensed"; font-size: clamp(3.4rem, 6vw, 6rem); line-height: .82; text-transform: uppercase; }
.scg-cta p:not(.scg-eyebrow) { max-width: 450px; color: #a2a7b2; font-family: "Noto Sans Myanmar", "DM Sans", sans-serif; font-size: .84rem; line-height: 1.8; }
.scg-footer { width: min(1240px, calc(100% - 48px)); margin: 0 auto; display: flex; justify-content: space-between; gap: 20px; padding: 25px 0; border-top: 1px solid rgba(255,255,255,.1); color: #777d8b; font-size: .66rem; }
.scg-footer a { display: inline-flex; align-items: center; gap: 6px; color: var(--cyan); text-transform: uppercase; letter-spacing: .08em; }
@media (max-width: 900px) {
  .scg-hero { grid-template-columns: 1fr; }
  .scg-hero-poster { width: min(100%, 520px); }
  .scg-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .scg-gallery-grid { grid-template-columns: 1fr 1fr; }
  .scg-gallery-1 { grid-row: auto; grid-column: span 2; min-height: 450px; }
}
@media (max-width: 680px) {
  .scg-shell, .scg-footer { width: calc(100% - 32px); }
  .scg-header-inner { width: calc(100% - 32px); height: 71px; }
  .scg-back, .scg-header-link { font-size: .59rem; }
  .scg-brand small { display: none; }
  .scg-hero { padding-top: 59px; padding-bottom: 68px; }
  .scg-hero h1 { font-size: clamp(4.2rem, 19vw, 6.2rem); }
  .scg-intro { font-size: .78rem; line-height: 1.85; }
  .scg-lead-note { font-size: .83rem; }
  .scg-marquee { justify-content: flex-start; gap: 12px; overflow: hidden; white-space: nowrap; padding: 0 16px; font-size: .54rem; }
  .scg-section-heading { display: block; }
  .scg-section-heading > p { margin-top: 24px; }
  .scg-features, .scg-gallery { padding-top: 79px; padding-bottom: 79px; }
  .scg-feature-grid { grid-template-columns: 1fr; margin-top: 37px; }
  .scg-feature-card { min-height: 0; }
  .scg-gallery-grid { grid-template-columns: 1fr; }
  .scg-gallery-1 { grid-column: auto; min-height: 0; }
  .scg-gallery-2, .scg-gallery-3, .scg-gallery-4, .scg-gallery-5 { min-height: 0; }
  .scg-gallery-card img { aspect-ratio: 1; }
  .scg-cta { align-items: flex-start; flex-direction: column; margin-bottom: 68px; padding: 39px 25px; }
  .scg-footer { flex-direction: column; }
}

/* Steam Access Key page: protected Burmese copy is displayed in a high-readability
   editorial column, while the poster and supporting panels inherit the storefront's
   cyan/magenta/amber arcade material system. */
.access-page { min-height: 100vh; color: #f4f5f7; background: #06070b; overflow: hidden; }
.access-shell { width: min(1240px, calc(100% - 48px)); margin: 0 auto; }
.access-header { position: sticky; top: 0; z-index: 30; border-bottom: 1px solid rgba(255,255,255,.1); background: rgba(6,7,11,.84); backdrop-filter: blur(18px); }
.access-header-inner { width: min(1320px, calc(100% - 48px)); height: 78px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.access-back, .access-header-link { display: inline-flex; align-items: center; gap: 8px; color: #a9afbd; font-size: .69rem; text-transform: uppercase; letter-spacing: .12em; transition: color .2s var(--ease-out); }
.access-back:hover, .access-header-link:hover { color: var(--amber); }
.access-brand { display: inline-flex; align-items: center; gap: 10px; font-family: "Barlow Condensed", sans-serif; }
.access-brand-mark { display: grid; place-items: center; width: 37px; height: 37px; border: 1px solid rgba(30,232,255,.7); background: rgba(30,232,255,.07); transform: skew(-7deg); }
.access-brand-mark img { width: 27px; height: 27px; object-fit: contain; transform: skew(7deg); }
.access-brand strong { display: block; font-size: 1.12rem; letter-spacing: .13em; }
.access-brand strong span { color: var(--cyan); }
.access-brand small { display: block; color: var(--cyan); font-family: "DM Sans", sans-serif; font-size: .52rem; letter-spacing: .26em; text-align: right; }
.access-hero { position: relative; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); align-items: start; gap: clamp(42px, 7vw, 105px); padding-top: 84px; padding-bottom: 86px; }
.access-hero::before { content: ""; position: absolute; inset: 0 -60px; z-index: -2; opacity: .55; background: linear-gradient(90deg, rgba(6,7,11,.97) 0%, rgba(6,7,11,.72) 53%, rgba(6,7,11,.2) 100%), url("/assets/steam-hero-neon.jpg") center / cover; }
.access-hero-grid { position: absolute; left: -10vw; right: -10vw; bottom: 30px; z-index: -1; height: 1px; background: linear-gradient(90deg, transparent, var(--cyan), var(--pink), transparent); box-shadow: 0 0 23px var(--cyan); opacity: .65; }
.access-copy { min-width: 0; }
.access-eyebrow { display: flex; align-items: center; gap: 9px; margin: 0 0 19px; color: var(--amber); font-size: .68rem; text-transform: uppercase; letter-spacing: .18em; font-weight: 700; }
.access-eyebrow span { width: 31px; height: 1px; background: var(--amber); box-shadow: 0 0 9px var(--amber); }
.access-title { margin: 0 0 23px; font-family: "Barlow Condensed", "Noto Sans Myanmar", sans-serif; font-size: clamp(4.4rem, 8vw, 8rem); line-height: .82; text-transform: uppercase; letter-spacing: -.03em; }
.access-title em, .access-cta h2 em { color: var(--cyan); font-style: normal; text-shadow: 0 0 22px rgba(30,232,255,.3); }
.access-long-copy { max-height: 650px; overflow: auto; padding: 19px 21px 19px 0; border-top: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); color: #c5c9d3; font-family: "Noto Sans Myanmar", "DM Sans", sans-serif; font-size: .92rem; line-height: 2; scrollbar-color: var(--cyan) rgba(255,255,255,.08); }
.access-highlights { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 21px; color: #d7dae2; font-size: .7rem; text-transform: uppercase; letter-spacing: .06em; }
.access-highlights span { display: inline-flex; align-items: center; gap: 6px; }
.access-highlights svg { color: var(--cyan); }
.access-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; margin-top: 26px; }
.access-button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 14px 18px; text-transform: uppercase; letter-spacing: .1em; font-size: .69rem; font-weight: 700; transition: transform .2s var(--ease-out), box-shadow .2s, background .2s; }
.access-button:hover { transform: translateY(-3px); }
.access-button-amber { color: #16120a; background: var(--amber); box-shadow: 0 0 25px rgba(255,184,46,.2); }
.access-button-amber:hover { background: #ffd269; box-shadow: 0 0 34px rgba(255,184,46,.34); }
.access-inline-link { display: inline-flex; align-items: center; gap: 6px; color: #c2c6d1; border-bottom: 1px solid rgba(255,255,255,.25); padding-bottom: 4px; font-size: .72rem; }
.access-inline-link:hover { color: var(--cyan); border-color: var(--cyan); }
.access-poster-wrap { position: sticky; top: 112px; align-self: start; padding: 17px; border: 1px solid rgba(30,232,255,.46); background: rgba(10,12,18,.75); box-shadow: 0 0 0 1px rgba(255,45,190,.15), 0 25px 70px rgba(0,0,0,.5); transform: rotate(2deg); }
.access-poster-wrap::before { content: ""; position: absolute; top: -1px; left: 27px; width: 83px; height: 2px; background: var(--pink); box-shadow: 0 0 18px var(--pink); }
.access-poster-label { position: absolute; top: 31px; left: 31px; z-index: 2; padding: 8px 10px; color: #101116; background: var(--amber); font-size: .6rem; font-weight: 700; letter-spacing: .12em; }
.access-poster { display: block; width: 100%; aspect-ratio: 1; object-fit: cover; }
.access-poster-foot { display: flex; justify-content: space-between; align-items: center; padding: 15px 4px 0; }
.access-poster-foot span { color: var(--amber); font-size: .6rem; letter-spacing: .12em; }
.access-poster-foot strong { font-family: "Barlow Condensed"; font-size: 1.45rem; letter-spacing: .06em; }
.access-proof { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); }
.access-proof > div { min-height: 150px; padding: 23px; border-right: 1px solid rgba(255,255,255,.1); }
.access-proof > div:last-child { border-right: 0; }
.access-proof span { display: block; color: var(--amber); font-family: "Barlow Condensed"; font-size: 1.45rem; }
.access-proof strong { display: block; margin-top: 7px; font-family: "Barlow Condensed"; font-size: 1.35rem; text-transform: uppercase; letter-spacing: .04em; }
.access-proof p { margin: 5px 0 0; color: #858b99; font-size: .73rem; line-height: 1.6; }
.access-cta { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-top: 95px; margin-bottom: 95px; padding: 57px 66px; border: 1px solid rgba(255,184,46,.35); background: linear-gradient(90deg, rgba(13,15,22,.98), rgba(13,15,22,.55)), url("/assets/steam-support-panel.jpg") center / cover; }
.access-cta h2 { margin: 11px 0 0; font-family: "Barlow Condensed"; font-size: clamp(3.4rem, 6vw, 6rem); line-height: .82; text-transform: uppercase; }
.access-footer { width: min(1240px, calc(100% - 48px)); margin: 0 auto; display: flex; justify-content: space-between; gap: 20px; padding: 25px 0; border-top: 1px solid rgba(255,255,255,.1); color: #777d8b; font-size: .66rem; }
.access-footer a { display: inline-flex; align-items: center; gap: 6px; color: var(--cyan); text-transform: uppercase; letter-spacing: .08em; }
@media (max-width: 900px) {
  .access-hero { grid-template-columns: 1fr; }
  .access-poster-wrap { position: relative; top: auto; width: min(100%, 520px); }
}
@media (max-width: 680px) {
  .access-shell, .access-footer { width: calc(100% - 32px); }
  .access-header-inner { width: calc(100% - 32px); height: 71px; }
  .access-back { font-size: .59rem; }
  .access-header-link { font-size: .59rem; }
  .access-brand small { display: none; }
  .access-hero { padding-top: 58px; padding-bottom: 68px; }
  .access-title { font-size: clamp(4.1rem, 19vw, 6rem); }
  .access-long-copy { font-size: .79rem; line-height: 1.85; max-height: none; }
  .access-highlights { gap: 9px; font-size: .58rem; }
  .access-proof { grid-template-columns: 1fr; }
  .access-proof > div { min-height: 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .access-proof > div:last-child { border-bottom: 0; }
  .access-cta { align-items: flex-start; flex-direction: column; margin-top: 68px; margin-bottom: 68px; padding: 39px 25px; }
  .access-footer { flex-direction: column; }
}

/* Static-host build helpers */
.icon-svg{width:1em;height:1em;display:inline-block;vertical-align:-.12em;fill:none;stroke:currentColor;stroke-width:1.9;stroke-linecap:round;stroke-linejoin:round;flex:0 0 auto}
.product-card[hidden]{display:none!important}
.filter-button{cursor:pointer}
