/* =====================================================
   SEOUL MEDIA STUDIO — Shared Stylesheet
   Black / Gold · Indie Game Studio
   ===================================================== */

:root{
  --bg: #0a0a0a;
  --bg-2: #111111;
  --surface: #161616;
  --surface-2: #1c1c1c;
  --line: rgba(212,168,56,0.18);
  --line-strong: rgba(212,168,56,0.35);
  --gold-1: #aa7a17;
  --gold-2: #ead06c;
  --gold-3: #b8902b;
  --gold: #d4a838;
  --text: #f4f1e8;
  --muted: #8a8576;
  --grad-gold: linear-gradient(180deg, #aa7a17 0%, #ead06c 50%, #b8902b 100%);
  --grad-gold-h: linear-gradient(90deg, #aa7a17 0%, #ead06c 50%, #b8902b 100%);
}

*, *::before, *::after{ box-sizing: border-box; }
html, body{ margin: 0; padding: 0; }
html{ scroll-behavior: smooth; }

body{
  background: var(--bg);
  color: var(--text);
  font-family: 'Rajdhani', 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5{
  font-family: 'Orbitron', 'Rajdhani', sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0;
  color: var(--text);
}
p{ margin: 0; }
a{ color: inherit; text-decoration: none; }
img{ max-width: 100%; display: block; }

/* gold text utility */
.gold-text{
  background: var(--grad-gold-h);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.container{
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
.container-narrow{
  max-width: 960px;
  margin: 0 auto;
  padding: 0 32px;
}

/* =====================================================
   HEADER / NAV
   ===================================================== */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 32px;
  max-width: 1240px;
  margin: 0 auto;
}
.logo-mark{
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo-mark svg{
  width: 52px;
  height: auto;
  display: block;
}
.wordmark{
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.18em;
  line-height: 1.15;
  color: var(--text);
}
.wordmark span{ display: block; }

.site-nav{
  display: flex;
  align-items: center;
  gap: 30px;
}
.site-nav a{
  font-family: 'Orbitron', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.78;
  transition: opacity .2s, color .2s;
  padding: 6px 0;
  position: relative;
}
.site-nav a:hover{ opacity: 1; color: var(--gold-2); }
.site-nav a.active{
  opacity: 1;
  color: var(--gold-2);
}
.site-nav a.active::after{
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--grad-gold-h);
}
.site-nav a.cta{
  border: 1px solid var(--line-strong);
  padding: 10px 18px;
  opacity: 1;
  background: linear-gradient(180deg, rgba(212,168,56,0.08), rgba(212,168,56,0.02));
  transition: all .25s;
}
.site-nav a.cta:hover{
  background: var(--grad-gold-h);
  color: #0a0a0a;
  border-color: transparent;
}

/* tighter nav with one more item */
@media (min-width: 961px){
  .site-nav{ gap: 22px; }
}

.lang-switch{
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  padding: 2px;
}
.lang-btn{
  background: transparent;
  border: none;
  color: var(--text);
  opacity: 0.55;
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  padding: 8px 12px;
  cursor: pointer;
  transition: all .2s;
}
.lang-btn:hover{ opacity: 1; color: var(--gold-2); }
.lang-btn.active{
  background: var(--grad-gold-h);
  color: #0a0a0a;
  opacity: 1;
}

.burger{
  display: none;
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--gold-2);
  width: 44px;
  height: 44px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.burger svg{ width: 22px; height: 22px; }

.header-right{
  display: flex;
  align-items: center;
  gap: 14px;
}

/* =====================================================
   SECTION + LAYOUT BASE
   ===================================================== */
.section{
  padding: 120px 0;
  position: relative;
}
.section-sm{ padding: 80px 0; }
.section-head{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 72px;
  flex-wrap: wrap;
}
.section-head h2{
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.15;
  max-width: 720px;
}
.section-head .head-aside{
  max-width: 380px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 28px;
}
.eyebrow::before{
  content: '';
  width: 32px;
  height: 1px;
  background: var(--grad-gold-h);
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  font-family: 'Orbitron', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: all .25s;
}
.btn-primary{
  background: var(--grad-gold-h);
  color: #0a0a0a;
  border-color: transparent;
}
.btn-primary:hover{ filter: brightness(1.1); transform: translateY(-1px); }
.btn-ghost:hover{
  border-color: var(--gold-2);
  color: var(--gold-2);
}
.btn .arrow{
  width: 14px;
  height: 14px;
  display: inline-flex;
}
.cta-row{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Steam & itch.io link buttons (brand-styled) */
.platform-link{
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  background: linear-gradient(180deg, rgba(212,168,56,0.06), rgba(212,168,56,0.02));
  border: 1px solid var(--line-strong);
  color: var(--text);
  text-decoration: none;
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
}
.platform-link::before{
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(234,208,108,0.18), transparent);
  transition: left .6s ease;
}
.platform-link:hover{
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(212,168,56,0.12), rgba(212,168,56,0.04));
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(212,168,56,0.18);
}
.platform-link:hover::before{ left: 100%; }
.platform-icon{
  width: 28px;
  height: 28px;
  color: var(--gold-2);
  flex-shrink: 0;
}
.platform-text{
  display: flex;
  flex-direction: column;
  flex: 1;
  line-height: 1.1;
}
.platform-small{
  font-family: 'Orbitron', sans-serif;
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.platform-big{
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.06em;
  color: var(--text);
}
.platform-link .arrow{
  width: 16px;
  height: 16px;
  color: var(--gold-2);
  flex-shrink: 0;
  transition: transform .25s ease;
}
.platform-link:hover .arrow{ transform: translateX(3px); }

/* =====================================================
   HERO (home)
   ===================================================== */
.hero{
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 80px 0 100px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg{
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(212,168,56,0.18), transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(212,168,56,0.08), transparent 60%),
    #0a0a0a;
}
.hero-grid{
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(212,168,56,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,168,56,0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 75%);
}
.hero-content{
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}
.hero h1{
  font-size: clamp(40px, 6.2vw, 84px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 56px;
}
.hero h1 .line{ display: block; }
.hero .lead{
  font-size: 20px;
  color: var(--text);
  opacity: 0.82;
  max-width: 520px;
  margin-bottom: 40px;
  font-weight: 400;
  line-height: 1.6;
}
.hero-logo{
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-logo svg{
  width: 100%;
  max-width: 420px;
  height: auto;
  filter: drop-shadow(0 0 60px rgba(212,168,56,0.35));
  animation: float 6s ease-in-out infinite;
}
@keyframes float{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(-12px); }
}
.hero-logo::before{
  content: '';
  position: absolute;
  width: 80%;
  height: 80%;
  border: 1px solid var(--line);
  transform: rotate(45deg);
  z-index: -1;
}
.hero-logo::after{
  content: '';
  position: absolute;
  width: 60%;
  height: 60%;
  border: 1px solid var(--line-strong);
  transform: rotate(45deg);
  z-index: -1;
  opacity: 0.6;
}

.tech-strip{
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.tech-strip .tech-label{
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}
.tech-items{
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.tech-items span{
  font-family: 'Orbitron', sans-serif;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.7;
}

/* =====================================================
   PAGE HERO (interior pages)
   ===================================================== */
.page-hero{
  padding: 100px 0 80px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-hero-bg{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(212,168,56,0.12), transparent 60%),
    radial-gradient(ellipse at 10% 80%, rgba(212,168,56,0.06), transparent 60%);
  pointer-events: none;
}
.page-hero-inner{
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
}
.page-hero h1{
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.page-hero .lead{
  font-size: 19px;
  color: var(--text);
  opacity: 0.78;
  line-height: 1.7;
  max-width: 500px;
}
.crumbs{
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.crumbs a{ color: var(--muted); transition: color .2s; }
.crumbs a:hover{ color: var(--gold-2); }
.crumbs .sep{ color: var(--line-strong); }

/* =====================================================
   GAME CARD (used on home & games page)
   ===================================================== */
.game-card{
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, transform .3s;
  text-decoration: none;
  color: inherit;
}
.game-card:hover{
  border-color: var(--line-strong);
  transform: translateY(-4px);
}
.game-visual{
  aspect-ratio: 2/1;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
}
.game-visual img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.game-card:hover .game-visual img{ transform: scale(1.04); }
.game-visual::after{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
  z-index: 1;
}
.game-visual .visual-tag,
.game-visual .visual-label{
  position: absolute;
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  z-index: 2;
}
.game-visual .visual-tag{
  top: 14px;
  right: 18px;
  color: var(--gold);
}
.game-visual .visual-label{
  bottom: 14px;
  left: 18px;
  color: var(--muted);
}
.game-visual.forsaken-bg{
  background:
    radial-gradient(ellipse at 50% 110%, rgba(212,168,56,0.25), transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(0,0,0,0.6), transparent 70%),
    repeating-linear-gradient(90deg, rgba(212,168,56,0.04) 0 1px, transparent 1px 80px),
    linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
}
.game-visual.forsaken-bg .glyph{
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 6vw, 80px);
  letter-spacing: 0.12em;
  color: rgba(212,168,56,0.85);
  text-shadow: 0 0 24px rgba(212,168,56,0.4), 0 0 60px rgba(212,168,56,0.2);
  z-index: 1;
}
.game-body{
  padding: 40px 36px 40px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.game-tag{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid var(--line-strong);
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 24px;
  align-self: flex-start;
}
.game-tag .pulse{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(212,168,56,0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse{
  0%{ box-shadow: 0 0 0 0 rgba(212,168,56,0.7); }
  70%{ box-shadow: 0 0 0 12px rgba(212,168,56,0); }
  100%{ box-shadow: 0 0 0 0 rgba(212,168,56,0); }
}
.game-card h3{
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.15;
  margin-bottom: 18px;
}
.game-card p{
  color: var(--text);
  opacity: 0.78;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 32px;
  flex: 1;
}
.game-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.meta-item{
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.meta-label{
  font-family: 'Orbitron', sans-serif;
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}
.meta-value{
  font-family: 'Orbitron', sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--text);
}

.games-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

/* =====================================================
   STUDIO / STATS
   ===================================================== */
.studio-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.studio-text p{
  font-size: 19px;
  color: var(--text);
  opacity: 0.85;
  margin-bottom: 22px;
  line-height: 1.65;
}
.studio-text p:last-child{ margin-bottom: 0; }
.stat-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.stat{
  background: var(--bg);
  padding: 36px 28px;
}
.stat-num{
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 48px;
  line-height: 1;
  background: var(--grad-gold-h);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}
.stat-label{
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* =====================================================
   SERVICES
   ===================================================== */
.bg-2{ background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.services-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service{
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: all .35s;
  display: flex;
  flex-direction: column;
}
.service::before{
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-gold-h);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s ease;
}
.service:hover{
  background: var(--surface-2);
  border-color: var(--line-strong);
  transform: translateY(-4px);
}
.service:hover::before{ transform: scaleX(1); }
.service-num{
  font-family: 'Orbitron', sans-serif;
  font-size: 13px;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 32px;
  display: block;
}
.service h3{
  font-size: 28px;
  line-height: 1.1;
  margin-bottom: 20px;
}
.service p{
  color: var(--text);
  opacity: 0.7;
  margin-bottom: 28px;
  font-size: 16px;
  line-height: 1.65;
}
.service-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-list li{
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.65;
  display: flex;
  align-items: center;
  gap: 12px;
}
.service-list li::before{
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  flex-shrink: 0;
  transform: rotate(45deg);
}

/* =====================================================
   PRESS KIT
   ===================================================== */
.press-hero{
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.press-hero-bg{
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.press-cover{
  width: 100%;
  aspect-ratio: 21/9;
  margin: 40px 0 0;
  border: 1px solid var(--line);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.press-cover img{
  width: 100%; height: 100%; object-fit: cover;
}
.press-cover.forsaken-cover{
  background:
    radial-gradient(ellipse at 50% 110%, rgba(212,168,56,0.3), transparent 60%),
    repeating-linear-gradient(90deg, rgba(212,168,56,0.05) 0 1px, transparent 1px 60px),
    repeating-linear-gradient(0deg, transparent 0 2px, rgba(0,0,0,0.4) 2px 3px),
    linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.press-cover.forsaken-cover .cover-glyph{
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: clamp(80px, 14vw, 220px);
  letter-spacing: 0.18em;
  color: rgba(212,168,56,0.7);
  text-shadow: 0 0 40px rgba(212,168,56,0.5), 0 0 100px rgba(212,168,56,0.25);
}

.press-grid{
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  margin-top: 80px;
}

.factsheet{
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, rgba(212,168,56,0.04), rgba(212,168,56,0.01));
  padding: 36px 32px;
  align-self: start;
  position: sticky;
  top: 100px;
}
.factsheet-head{
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.factsheet-row{
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
}
.factsheet-row:last-child{ border-bottom: none; }
.factsheet-key{
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}
.factsheet-val{
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: var(--text);
}
.factsheet-val a{
  color: var(--gold-2);
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.factsheet-val a:hover{ border-color: var(--gold-2); }

.press-body section{
  margin-bottom: 56px;
}
.press-body h2{
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15;
  margin-bottom: 20px;
}
.press-body h3{
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 16px;
  margin-top: 32px;
}
.press-body p{
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
  opacity: 0.88;
  margin-bottom: 18px;
  max-width: 720px;
}
.press-body p.lead-quote{
  font-size: 22px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 500;
  line-height: 1.4;
  color: var(--text);
  opacity: 1;
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  margin: 32px 0;
}
.feature-list{
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}
.feature-list li{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.feature-list li::before{
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 8px;
  transform: rotate(45deg);
}

.tag-list{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.tag-chip{
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.8;
  padding: 6px 12px;
  border: 1px solid var(--line);
  background: rgba(212,168,56,0.04);
}

.req-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 20px;
}
.req-card{
  border: 1px solid var(--line);
  padding: 24px;
  background: var(--surface);
}
.req-card h4{
  font-family: 'Orbitron', sans-serif;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 16px;
}
.req-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}
.req-list li{
  display: flex;
  gap: 8px;
  line-height: 1.45;
}
.req-list strong{
  color: var(--muted);
  font-weight: 600;
  min-width: 90px;
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lang-table{
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
  font-size: 14px;
}
.lang-table th, .lang-table td{
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}
.lang-table th{
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.lang-table .yes{ color: var(--gold-2); }
.lang-table .no{ color: var(--muted); opacity: 0.4; }

.cta-strip{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

/* =====================================================
   CONTACT
   ===================================================== */
.contact-section{
  background: var(--bg);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.contact-bg{
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(212,168,56,0.18), transparent 50%),
    radial-gradient(ellipse at 20% 50%, rgba(212,168,56,0.08), transparent 60%);
}
.contact-grid{
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.contact-status{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border: 1px solid var(--line-strong);
  background: rgba(212,168,56,0.05);
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 32px;
}
.contact-status .pulse{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(212,168,56,0.7);
  animation: pulse 2s infinite;
}
.contact-intro h2{
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.1;
  margin-bottom: 28px;
}
.contact-lead{
  font-size: 18px;
  color: var(--text);
  opacity: 0.78;
  max-width: 460px;
  line-height: 1.75;
}
.contact-card{
  position: relative;
  background: linear-gradient(180deg, rgba(212,168,56,0.04), rgba(212,168,56,0.01));
  border: 1px solid var(--line-strong);
  padding: 48px 44px;
}
.contact-card::before,
.contact-card::after,
.contact-card .corner{
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid var(--gold);
  pointer-events: none;
}
.contact-card::before{ top: -1px; left: -1px; border-right: none; border-bottom: none; }
.contact-card::after{ top: -1px; right: -1px; border-left: none; border-bottom: none; }
.contact-card .corner-bl{ bottom: -1px; left: -1px; border-right: none; border-top: none; }
.contact-card .corner-br{ bottom: -1px; right: -1px; border-left: none; border-top: none; }

.contact-card-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 20px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--line);
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-card-head .card-id{ color: var(--gold-2); }
.contact-fields{
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 40px;
}
.contact-field{
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field-label{
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}
.field-value{
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: var(--text);
  line-height: 1.4;
}
.field-value.mail{
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  font-size: clamp(18px, 1.9vw, 24px);
  letter-spacing: 0.03em;
  background: var(--grad-gold-h);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  transition: letter-spacing .3s ease, filter .3s ease;
  align-self: flex-start;
}
.field-value.mail:hover{ letter-spacing: 0.05em; filter: brightness(1.15); }
.contact-action{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.action-note{
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* contact form */
/* consent checkbox row */
.consent-field{ margin-top: 4px; }
.consent-row{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.55;
  opacity: 0.85;
  cursor: pointer;
}
.consent-row input[type="checkbox"]{
  margin-top: 3px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--gold);
  cursor: pointer;
}
.consent-row a{
  color: var(--gold-2);
  border-bottom: 1px solid transparent;
}
.consent-row a:hover{ border-color: var(--gold-2); }

.contact-form{
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.form-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-field{
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-field label{
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-field input,
.form-field textarea,
.form-field select{
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--line);
  color: var(--text);
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  padding: 14px 16px;
  outline: none;
  transition: border-color .2s, background .2s;
  width: 100%;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus{
  border-color: var(--gold);
  background: rgba(0,0,0,0.6);
}
.form-field textarea{
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer{
  background: #060606;
  border-top: 1px solid var(--line);
  padding: 64px 0 32px;
}
.footer-grid{
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.footer-brand{
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 340px;
}
.footer-brand-logo{
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-brand-logo svg{ width: 44px; }
.footer-brand p{
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}
.footer-col h4{
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 18px;
}
.footer-col ul{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a{
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  color: var(--text);
  opacity: 0.7;
  transition: opacity .2s, color .2s;
}
.footer-col a:hover{ opacity: 1; color: var(--gold-2); }
.footer-bottom{
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.footer-bottom a{
  color: var(--muted);
  transition: color .2s;
}
.footer-bottom a:hover{ color: var(--gold-2); }
.footer-legal{ display: flex; gap: 22px; flex-wrap: wrap; }

/* =====================================================
   DOCS — Documentation pages
   ===================================================== */
.docs-layout{
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
  padding: 64px 0 100px;
}
.docs-toc{
  position: sticky;
  top: 96px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  padding-right: 14px;
  border-right: 1px solid var(--line);
  scrollbar-width: thin;
  scrollbar-color: var(--line-strong) transparent;
}
.docs-toc::-webkit-scrollbar{ width: 6px; }
.docs-toc::-webkit-scrollbar-thumb{ background: var(--line-strong); }
.docs-toc-head{
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.docs-toc ol{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  counter-reset: toc;
}
.docs-toc li{ counter-increment: toc; }
.docs-toc a{
  display: flex;
  gap: 10px;
  align-items: baseline;
  padding: 8px 10px 8px 0;
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  letter-spacing: 0.01em;
  line-height: 1.4;
  color: var(--text);
  opacity: 0.7;
  border-left: 2px solid transparent;
  padding-left: 14px;
  margin-left: -14px;
  transition: all .15s ease;
}
.docs-toc a::before{
  content: counter(toc, decimal-leading-zero);
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--muted);
  opacity: 0.6;
}
.docs-toc a:hover{ opacity: 1; color: var(--gold-2); }
.docs-toc a.active{
  opacity: 1;
  color: var(--gold-2);
  border-left-color: var(--gold);
  background: linear-gradient(90deg, rgba(212,168,56,0.06), transparent);
}
.docs-toc a.active::before{ color: var(--gold); opacity: 1; }

.docs-mobile-trigger{ display: none; }

.docs-content{
  min-width: 0; /* allow flex/grid item to shrink, enables wrapping */
  max-width: 820px;
  font-size: 16.5px;
  line-height: 1.75;
}
.docs-content h2{
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.2;
  margin: 72px 0 24px;
  padding-top: 16px;
  scroll-margin-top: 100px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.docs-content h2:first-child{
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}
.docs-content h2 .num{
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--gold);
  opacity: 0.85;
  flex-shrink: 0;
}
.docs-content h3{
  font-family: 'Orbitron', sans-serif;
  font-size: 18px;
  letter-spacing: 0.04em;
  margin: 40px 0 16px;
  color: var(--gold-2);
  scroll-margin-top: 100px;
}
.docs-content h4{
  font-family: 'Orbitron', sans-serif;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 32px 0 12px;
  color: var(--text);
  opacity: 0.92;
}
.docs-content p{
  margin: 0 0 18px;
  color: var(--text);
  opacity: 0.88;
}
.docs-content strong{ color: var(--text); font-weight: 600; opacity: 1; }
.docs-content em{ color: var(--gold-2); font-style: normal; opacity: 1; }
.docs-content a{
  color: var(--gold-2);
  border-bottom: 1px solid rgba(234,208,108,0.3);
  transition: border-color .15s, color .15s;
}
.docs-content a:hover{ border-bottom-color: var(--gold-2); }

.docs-content ul, .docs-content ol{
  margin: 0 0 20px;
  padding-left: 22px;
}
.docs-content li{
  margin-bottom: 8px;
  line-height: 1.7;
}
.docs-content ul li::marker{ color: var(--gold); }
.docs-content ol li::marker{
  color: var(--gold);
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  font-size: 14px;
}

/* code blocks */
.docs-content code{
  font-family: 'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;
  font-size: 0.88em;
  background: rgba(212,168,56,0.08);
  border: 1px solid var(--line);
  padding: 2px 7px;
  color: var(--gold-2);
  border-radius: 2px;
  letter-spacing: 0.01em;
}
.docs-content pre{
  background: #0a0a0a;
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  padding: 20px 24px;
  margin: 0 0 24px;
  overflow-x: auto;
  font-family: 'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text);
  position: relative;
}
.docs-content pre code{
  background: transparent;
  border: none;
  padding: 0;
  color: inherit;
  font-size: inherit;
  letter-spacing: 0;
}
.docs-content pre::-webkit-scrollbar{ height: 6px; }
.docs-content pre::-webkit-scrollbar-thumb{ background: var(--line-strong); }

/* blockquote / promise callout */
.docs-content blockquote{
  margin: 24px 0;
  padding: 18px 24px;
  background: linear-gradient(90deg, rgba(212,168,56,0.06), transparent);
  border-left: 3px solid var(--gold);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  font-style: normal;
}
.docs-content blockquote p{ margin: 0; }
.docs-content blockquote strong{ color: var(--gold-2); }

/* tables */
.docs-content table{
  width: 100%;
  border-collapse: collapse;
  margin: 8px 0 28px;
  font-size: 14.5px;
  background: var(--surface);
  border: 1px solid var(--line);
}
.docs-content thead th{
  text-align: left;
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-2);
  padding: 14px 18px;
  border-bottom: 1px solid var(--line-strong);
  background: rgba(212,168,56,0.04);
  font-weight: 500;
}
.docs-content tbody td{
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  line-height: 1.55;
  color: var(--text);
  opacity: 0.9;
}
.docs-content tbody tr:last-child td{ border-bottom: none; }
.docs-content tbody td:first-child{
  color: var(--gold-2);
  font-weight: 500;
  white-space: nowrap;
}
.docs-content tbody td:first-child code{
  background: transparent;
  border: none;
  padding: 0;
  color: var(--gold-2);
}

/* TOC sub-list (nested via h3) */
.docs-toc-sub{
  list-style: none;
  padding-left: 28px;
  margin: 2px 0 6px;
  border-left: 1px dashed var(--line);
}
.docs-toc-sub li{ counter-increment: none; }
.docs-toc-sub a::before{ display: none; }
.docs-toc-sub a{ font-size: 13px; padding-left: 10px; margin-left: -1px; }

/* docs hero */
.docs-hero{
  padding: 80px 0 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.docs-hero-inner{
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: end;
  padding-bottom: 56px;
}
.docs-hero h1{
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.04;
}
.docs-hero .lead{
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.85;
}
.docs-meta-strip{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.docs-meta-strip > div{
  background: var(--bg);
  padding: 22px 26px;
}
.docs-meta-key{
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.docs-meta-val{
  font-family: 'Orbitron', sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--text);
}
.docs-meta-val.gold{ color: var(--gold-2); }

/* Plugin docs index — grid of available docs */
.docs-index-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.docs-index-card{
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all .25s;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}
.docs-index-card::before{
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-gold-h);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.docs-index-card:hover{
  border-color: var(--line-strong);
  background: var(--surface-2);
  transform: translateY(-3px);
}
.docs-index-card:hover::before{ transform: scaleX(1); }
.docs-index-card.coming{
  opacity: 0.55;
  cursor: default;
  border-style: dashed;
}
.docs-index-card.coming:hover{ transform: none; }
.docs-index-card-tag{
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
}
.docs-index-card.coming .docs-index-card-tag{ color: var(--muted); }
.docs-index-card h3{
  font-family: 'Orbitron', sans-serif;
  font-size: 22px;
  line-height: 1.1;
  margin: 0;
}
.docs-index-card p{
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.75;
  margin: 0;
  flex: 1;
}
.docs-index-card-foot{
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-2);
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.docs-index-card.coming .docs-index-card-foot{ color: var(--muted); }

/* heading anchor link (#) */
.docs-content .anchor{
  opacity: 0;
  margin-left: 10px;
  font-weight: 400;
  color: var(--gold);
  transition: opacity .15s;
  text-decoration: none;
  border: none;
  font-size: 0.7em;
}
.docs-content h2:hover .anchor,
.docs-content h3:hover .anchor,
.docs-content h4:hover .anchor{ opacity: 0.8; }

/* docs responsive */
@media (max-width: 1100px){
  .docs-layout{ grid-template-columns: 240px 1fr; gap: 48px; }
}
@media (max-width: 900px){
  .docs-layout{
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 0 80px;
  }
  .docs-toc{
    position: static;
    max-height: none;
    border-right: none;
    border: 1px solid var(--line);
    padding: 24px;
    background: var(--surface);
    display: none;
  }
  .docs-toc.open{ display: block; }
  .docs-mobile-trigger{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: var(--surface);
    border: 1px solid var(--line-strong);
    color: var(--gold-2);
    padding: 14px 20px;
    font-family: 'Orbitron', sans-serif;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    cursor: pointer;
  }
  .docs-mobile-trigger svg{ width: 16px; height: 16px; transition: transform .25s; }
  .docs-mobile-trigger.open svg{ transform: rotate(180deg); }
  .docs-hero-inner{ grid-template-columns: 1fr; gap: 24px; align-items: start; padding-bottom: 40px; }
  .docs-meta-strip{ grid-template-columns: 1fr 1fr; }
  .docs-content{ max-width: none; font-size: 16px; }
  .docs-content h2{ margin-top: 48px; padding-top: 24px; }
  .docs-index-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px){
  .docs-meta-strip{ grid-template-columns: 1fr; }
  .docs-content table{ font-size: 13.5px; }
  .docs-content thead th,
  .docs-content tbody td{ padding: 10px 12px; }
  .docs-content pre{ padding: 16px 18px; font-size: 12.5px; }
  .docs-index-grid{ grid-template-columns: 1fr; }
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1100px){
  .container, .container-narrow{ padding: 0 28px; }
  .site-header-inner{ padding: 16px 28px; }
  .site-nav{ gap: 22px; }
  .services-grid{ gap: 18px; }
  .games-grid{ gap: 22px; }
  .section{ padding: 100px 0; }
  .section-head{ margin-bottom: 56px; gap: 28px; }
  .press-grid{ grid-template-columns: 280px 1fr; gap: 40px; }
  .footer-grid{ grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; }
}

@media (max-width: 960px){
  .hero{ min-height: 0; padding: 72px 0 88px; }
  .hero-content{ grid-template-columns: 1fr; gap: 48px; }
  .hero-logo{ order: -1; }
  .hero-logo svg{ max-width: 260px; }
  .hero-logo::before{ width: 70%; height: 70%; }
  .hero-logo::after{ width: 55%; height: 55%; }
  .hero h1{ font-size: clamp(36px, 6vw, 56px); margin-bottom: 36px; }

  .studio-grid{ grid-template-columns: 1fr; gap: 48px; }
  .services-grid{ grid-template-columns: 1fr; gap: 18px; }
  .games-grid{ grid-template-columns: 1fr; gap: 22px; }
  .section{ padding: 88px 0; }
  .section-head{ flex-direction: column; align-items: flex-start; margin-bottom: 48px; gap: 24px; }
  .section-head .head-aside{ max-width: none; }
  .page-hero-inner{ grid-template-columns: 1fr; gap: 32px; }
  .page-hero{ padding: 64px 0 56px; }

  .press-grid{ grid-template-columns: 1fr; gap: 40px; margin-top: 56px; }
  .factsheet{ position: static; top: auto; }
  .feature-list{ grid-template-columns: 1fr; }
  .req-grid{ grid-template-columns: 1fr; }

  .contact-grid{ grid-template-columns: 1fr; gap: 48px; }
  .contact-card{ padding: 36px 28px; }
  .contact-action{ flex-direction: column; align-items: stretch; gap: 16px; }
  .contact-action .btn{ justify-content: center; width: 100%; }

  .footer-grid{ grid-template-columns: 1fr 1fr; gap: 36px; padding-bottom: 36px; }
  .footer-brand{ grid-column: 1 / -1; }

  .tech-strip{ margin-top: 56px; padding-top: 28px; }
  .tech-items{ gap: 22px 28px; }
  .tech-items span{ font-size: 12px; }

  .site-nav{ display: none; }
  .burger{ display: inline-flex; }
  .site-nav.open{
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 24px 28px;
    gap: 4px;
    align-items: stretch;
  }
  .site-nav.open a{
    padding: 14px 0;
    font-size: 13px;
    width: 100%;
    border-bottom: 1px solid var(--line);
  }
  .site-nav.open a:last-child{ border-bottom: none; margin-top: 8px; }
  .site-nav.open a.cta{
    text-align: center;
    padding: 14px 18px;
  }
}

@media (max-width: 720px){
  body{ font-size: 16px; }
  .container, .container-narrow{ padding: 0 20px; }
  .site-header-inner{ padding: 14px 20px; gap: 12px; }
  .logo-mark svg{ width: 42px; }
  .wordmark{ font-size: 11px; letter-spacing: 0.14em; }

  .section{ padding: 72px 0; }
  .section-head{ margin-bottom: 40px; }
  .section-head h2{ font-size: clamp(30px, 7.5vw, 42px); }
  .section-head .head-aside{ font-size: 16px; }

  .hero{ padding: 48px 0 72px; }
  .hero-content{ gap: 40px; }
  .hero h1{ font-size: clamp(32px, 9vw, 46px); margin-bottom: 32px; }
  .hero .lead{ font-size: 17px; margin-bottom: 32px; }
  .eyebrow{ margin-bottom: 22px; font-size: 10px; letter-spacing: 0.28em; }
  .hero-logo svg{ max-width: 200px; }

  .cta-row{ gap: 12px; }
  .btn{ padding: 14px 22px; font-size: 11px; letter-spacing: 0.18em; }

  .tech-strip{ flex-direction: column; align-items: flex-start; gap: 16px; }
  .tech-items{ gap: 14px 22px; }

  .stat-grid{ grid-template-columns: 1fr 1fr; }
  .stat{ padding: 28px 22px; }
  .stat-num{ font-size: 36px; }

  .service{ padding: 36px 26px; }
  .service h3{ font-size: 24px; }

  .game-body{ padding: 32px 24px; }
  .game-card h3{ font-size: 26px; }
  .game-card p{ font-size: 15px; }

  .platform-link{ padding: 12px 16px; gap: 12px; }
  .platform-icon{ width: 24px; height: 24px; }
  .platform-big{ font-size: 13px; }

  .page-hero h1{ font-size: clamp(32px, 8vw, 44px); }

  .factsheet{ padding: 28px 22px; }
  .press-body p{ font-size: 16px; }
  .press-body p.lead-quote{ font-size: 18px; padding-left: 18px; }
  .form-row{ grid-template-columns: 1fr; gap: 16px; }

  .contact-section{ padding: 80px 0; }
  .contact-card{ padding: 32px 24px; }
  .contact-fields{ gap: 24px; margin-bottom: 32px; }
  .field-value{ font-size: 16px; }
  .field-value.mail{
    font-size: clamp(15px, 4.5vw, 20px);
    word-break: break-word;
    line-height: 1.3;
  }

  .footer-bottom{ flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-legal{ gap: 18px; }
  .footer-grid{ grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px){
  .container, .container-narrow{ padding: 0 18px; }
  .site-header-inner{ padding: 12px 18px; }
  .logo-mark{ gap: 10px; }
  .logo-mark svg{ width: 38px; }
  .wordmark{ font-size: 10px; letter-spacing: 0.12em; }

  .section{ padding: 64px 0; }
  .hero{ padding: 40px 0 64px; }
  .hero h1{ font-size: clamp(28px, 8.5vw, 38px); line-height: 1.1; }

  .cta-row{ flex-direction: column; align-items: stretch; }
  .btn{ justify-content: center; width: 100%; }

  .stat-grid{ grid-template-columns: 1fr; }
  .stat-num{ font-size: 32px; }

  .service{ padding: 28px 22px; }
  .game-body{ padding: 28px 22px; }
  .game-card h3{ font-size: 23px; }
  .game-meta{ gap: 14px 22px; }

  .contact-card{ padding: 28px 22px; }
}

@media (max-width: 960px){
  .home-qs-card{ grid-template-columns: 1fr !important; }
  .home-qs-visual{ border-right: none !important; border-bottom: 1px solid var(--line); aspect-ratio: 16/9; padding: 16px !important; }
  .home-qs-visual img{ max-height: 100%; width: 100%; height: auto; }
}

@media (max-width: 360px){
  .wordmark{ display: none; }
}

/* ServerSmith product card responsive */
@media (max-width: 860px){
  .ss-body-grid{ grid-template-columns: 1fr !important; }
  .ss-body-main{ border-right: none !important; border-bottom: 1px solid var(--line); padding: 40px 32px !important; }
  .ss-body-side{ padding: 40px 32px !important; }
  .ss-band{ padding: 40px 32px !important; }
}
@media (max-width: 480px){
  .ss-logo{ height: 56px !important; }
  .ss-body-main, .ss-body-side, .ss-band{ padding: 32px 24px !important; }
}

/* ServerSmith notify form */
.ss-notify-row{
  display: flex;
  gap: 10px;
  align-items: stretch;
}
.ss-notify-row input[type="email"]{
  flex: 1;
  min-width: 0;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--line);
  color: var(--text);
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  padding: 12px 14px;
  outline: none;
  transition: border-color .2s, background .2s;
}
.ss-notify-row input[type="email"]:focus{
  border-color: var(--gold);
  background: rgba(0,0,0,0.6);
}
.ss-notify-row input[type="email"]::placeholder{ color: var(--muted); }
.ss-notify-row .btn{
  padding: 12px 18px;
  flex-shrink: 0;
}

/* Discord CTA responsive */
@media (max-width: 860px){
  .discord-cta{
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    padding: 40px 32px !important;
    text-align: center;
  }
  .discord-cta-icon{ margin: 0 auto; }
  .discord-cta-text{ }
  .discord-cta-text p{ margin-left: auto !important; margin-right: auto !important; }
  .discord-cta-btn{ justify-content: center; width: 100%; }
}
@media (max-width: 480px){
  .discord-cta{ padding: 32px 24px !important; }
  .discord-cta-icon{ width: 72px !important; height: 72px !important; }
  .discord-cta-icon svg{ width: 38px !important; height: 38px !important; }
}

/* =====================================================
   LEGAL PAGES (Impressum / Datenschutz)
   ===================================================== */
.legal-text{
  font-size: 16px;
  line-height: 1.75;
  opacity: 0.92;
  color: var(--text);
}
.legal-text h2{
  font-family: 'Orbitron', sans-serif;
  font-size: 18px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-top: 56px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.legal-text h2:first-child{ margin-top: 0; }
.legal-text p{
  margin-bottom: 18px;
  max-width: 720px;
}
.legal-text ul{
  list-style: none;
  padding: 0;
  margin: 16px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 720px;
}
.legal-text ul li{
  display: flex;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  line-height: 1.55;
}
.legal-text ul li::before{
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 10px;
  transform: rotate(45deg);
}
.legal-text a{
  color: var(--gold-2);
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
  word-break: break-word;
}
.legal-text a:hover{ border-color: var(--gold-2); }
.legal-text strong{
  color: var(--text);
  font-weight: 600;
}

/* =====================================================
   PLUGINS GRID
   ===================================================== */
.plugin-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.plugin-card{
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color .3s, transform .3s;
  text-decoration: none;
  color: inherit;
  position: relative;
}
.plugin-card:hover{
  border-color: var(--line-strong);
  transform: translateY(-4px);
}
.plugin-card::before{
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-gold-h);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s ease;
}
.plugin-card:hover::before{ transform: scaleX(1); }
.plugin-visual{
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, rgba(212,168,56,0.10), transparent 70%), var(--bg);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.plugin-visual::before{
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border: 1px solid var(--line);
  transform: rotate(45deg);
  opacity: 0.4;
}
.plugin-visual .plugin-icon-wrap{
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 24px rgba(212,168,56,0.3));
}
.plugin-visual .plugin-icon-wrap svg{
  width: 100%;
  height: 100%;
  color: var(--gold-2);
}
.plugin-visual .placeholder-id{
  position: absolute;
  bottom: 14px;
  left: 18px;
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
}
.plugin-visual .plugin-tag{
  position: absolute;
  top: 14px;
  right: 18px;
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.plugin-body{
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.plugin-num{
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--gold);
  margin-bottom: 18px;
}
.plugin-card h3{
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 14px;
}
.plugin-card p{
  color: var(--text);
  opacity: 0.75;
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 24px;
  flex: 1;
}
.plugin-link-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-2);
}
.plugin-link-row svg{
  width: 14px; height: 14px;
  transition: transform .25s;
}
.plugin-card:hover .plugin-link-row svg{ transform: translateX(4px); }

@media (max-width: 960px){
  .plugin-grid{ grid-template-columns: 1fr; }
  .legal-text h2{ font-size: 16px; margin-top: 44px; }
}
@media (max-width: 720px){
  .plugin-body{ padding: 26px 22px; }
  .plugin-card h3{ font-size: 19px; }
  .legal-text{ font-size: 15px; }
}
