/* Shared styling for the GATE STUDIOS legal pages (AGB, Datenschutz, Impressum) */
:root {
  --bg: #E3E0DA;
  --ink: #0B0B0B;
  --muted: rgba(11,11,11,.55);
  --ease-quad: cubic-bezier(.25,.46,.45,.94);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html {
  background: var(--bg);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  background: var(--bg); color: var(--ink);
  font-family: 'Inter', -apple-system, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }

nav {
  position: sticky; top: 0; z-index: 50;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: 20px 70px; height: 76.82px; background: var(--bg);
}
.nav-links { display: flex; gap: 26px; }
.nav-links a, .cta {
  font: 700 15px/1 'Inter', sans-serif; letter-spacing: -.01em;
  text-transform: uppercase; text-decoration: none;
}
.nav-links a { opacity: .8; transition: opacity .2s var(--ease-quad); }
.nav-links a:hover { opacity: 1; }
nav .logo-wrap { position: relative; display: flex; align-items: center; justify-content: center; }
nav .logo { height: 36px; opacity: .85; }
nav .logo-text {
  position: absolute; font: 700 11px/1 'Inter', sans-serif;
  letter-spacing: .04em; white-space: nowrap;
}
nav > div:last-child { display: flex; justify-content: flex-end; }
.cta {
  display: inline-block; background: var(--ink); border: 1px solid var(--ink);
  color: #fff; padding: 11px 24px; font-size: 13px !important; letter-spacing: .02em;
  transition: background-color .2s var(--ease-quad), color .2s var(--ease-quad);
}
.cta:hover { background: transparent; color: var(--ink); }

.legal { max-width: 900px; margin: 0 auto; padding: 90px 40px 120px; }
.legal h1 {
  font-size: clamp(28px, 3.2vw, 40px); font-weight: 600; letter-spacing: -.03em;
  line-height: 1.15; text-transform: uppercase; margin-bottom: 12px;
}
.legal .sub { font-size: 16px; color: var(--muted); margin-bottom: 56px; line-height: 1.5; }
.legal h2 {
  font-size: 20px; font-weight: 700; letter-spacing: -.01em;
  margin: 44px 0 14px; text-transform: uppercase;
}
.legal h3 { font-size: 16px; font-weight: 700; margin: 24px 0 8px; }
.legal p { font-size: 16px; line-height: 1.65; margin-bottom: 14px; color: rgba(11,11,11,.85); }
.legal ul { margin: 0 0 16px 20px; }
.legal li { font-size: 16px; line-height: 1.65; margin-bottom: 8px; color: rgba(11,11,11,.85); }
.legal a { text-decoration: underline; text-underline-offset: 2px; }
.legal .back {
  display: inline-block; margin-bottom: 40px; font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .04em; text-decoration: none;
  border-bottom: 1px solid var(--ink); padding-bottom: 2px;
}

footer { padding: 40px 0 0; background: rgba(11,11,11,.12); }
.foot-top {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px;
  padding: 0 180px 40px; font-size: 16px; color: rgba(0,0,0,.55);
}
.foot-top .brand-col, .foot-top .legal-col { display: flex; flex-direction: column; gap: 10px; }
.foot-top .brand-col > span:first-child { font-size: 24px; font-weight: 800; color: var(--ink); }
.foot-top .legal-col { text-align: right; }
.foot-top .legal-col > span:first-child { font-size: 16px; font-weight: 600; color: var(--ink); }
.foot-top a { text-decoration: none; transition: color .2s var(--ease-quad); }
.foot-top a:hover { color: var(--ink); }
.wordmark { width: 100%; display: block; }

@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .legal { padding: 60px 24px 80px; }
  .foot-top { padding: 0 24px 40px; }
}
