/* Watch Party — site brand stylesheet (shared by index/privacy/terms) */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #0B1220;
  --navy-2:      #131C2E;
  --black:       #05060A;
  --crimson:     #D62828;
  --crimson-deep:#9E1B1B;
  --orange:      #E26310;
  --gold:        #F4B92E;
  --gold-deep:   #B8881A;
  --bone:        #F5EDE0;
  --crt-green:   #3CD46B;
  --line:        rgba(245,237,224,0.08);

  --gray-300:    #d4d4d8;
  --gray-400:    #9aa3bd;
  --gray-500:    #6b748d;
  --gray-700:    #2a3148;

  --pixel:       #fff; /* monospace */
  --display:     "Press Start 2P", ui-monospace, monospace;
  --mono:        "JetBrains Mono", ui-monospace, "SF Mono", monospace;
  --lcd:         "VT323", ui-monospace, monospace;
}

html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--bone);
  font-family: var(--mono);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
}

/* Subtle global scanlines on the page */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    to bottom,
    rgba(0,0,0,0.18) 0 1px,
    transparent 1px 4px
  );
  z-index: 200;
  mix-blend-mode: multiply;
  opacity: 0.6;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: #ffd665; }

/* ─────────────────────────── CSS-ONLY CRT MARK ───────────────────────────
   A small pure-HTML/CSS pixel mark. Pixels are spans inside .crt-screen.
   Sprite uses CSS grid; pixel cells colored via per-cell classes.        */

.crt {
  display: inline-block;
  background: linear-gradient(180deg, #1a1f2e 0%, #0e1320 100%);
  padding: 10px 10px 12px;
  border-radius: 12px;
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,0.08),
    inset 0 -3px 0 rgba(0,0,0,0.5),
    0 0 0 2px var(--black),
    0 8px 22px rgba(0,0,0,0.5);
  position: relative;
}
.crt-screen {
  position: relative;
  background: #0a1a12;
  border-radius: 6px;
  padding: 22px 14px 8px;
  overflow: hidden;
  box-shadow:
    inset 0 0 0 2px var(--black),
    inset 0 0 18px rgba(0,255,140,0.08),
    inset 0 0 50px rgba(0,0,0,0.7);
}
.crt-screen::after {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(
    to bottom,
    rgba(0,0,0,0.5) 0 1px,
    transparent 1px 3px
  );
  mix-blend-mode: multiply;
}
.crt-screen::before {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(120% 80% at 30% 0%, rgba(255,255,255,0.18), transparent 55%);
  z-index: 3;
}
.crt-live {
  position: absolute;
  top: 5px; left: 50%;
  transform: translateX(-50%);
  background: var(--crimson);
  color: #fff;
  font-family: var(--display);
  font-size: 7px;
  letter-spacing: 0.12em;
  padding: 3px 6px 2px;
  border-radius: 2px;
  z-index: 4;
  box-shadow: 0 1px 0 var(--crimson-deep), 0 0 0 1px rgba(0,0,0,0.5);
  white-space: nowrap;
}
.crt-live::before {
  content: "● ";
  animation: blink 1.4s steps(2, end) infinite;
}
@keyframes blink { 50% { opacity: 0.3; } }

.crt-bar {
  height: 4px;
  background: linear-gradient(180deg, #ffd665 0%, var(--gold) 50%, var(--gold-deep) 100%);
  border-radius: 2px;
  margin-top: 6px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.5);
}

/* Pixel sprite */
.sprite {
  display: grid;
  position: relative;
  z-index: 2;
  margin: 0 auto;
}
.sprite > i { display: block; }
.sprite > i.t { background: transparent; }
.c-w  { background: #f5ede0; }
.c-k  { background: #05060A; }
.c-r  { background: #D62828; }
.c-d  { background: #8a1414; } /* jersey shadow */
.c-s  { background: #f4c79a; } /* skin */
.c-h  { background: #2b1d10; } /* hair */
.c-p  { background: #f5ede0; } /* pants (white) */
.c-f  { background: #1a1a1a; } /* shoe */
.c-g  { background: #F4B92E; }

/* CRT size variants — large/medium/small/nav */
.crt--lg .sprite-cell { width: 8px; height: 8px; }
.crt--md .sprite-cell { width: 5px; height: 5px; }
.crt--sm .sprite-cell { width: 4px; height: 4px; }
.crt--nav .sprite-cell { width: 3px; height: 3px; }

/* Scaled padding/badge per size */
.crt--nav { padding: 3px 3px 4px; border-radius: 6px; }
.crt--nav .crt-screen {
  width: 36px; height: 28px;
  padding: 0; border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
}
.crt--nav .crt-live {
  font-size: 4px;
  padding: 1px 3px;
  top: 2px;
  letter-spacing: 0.08em;
  box-shadow: 0 1px 0 var(--crimson-deep);
}
.crt--nav .crt-bar { height: 2px; margin-top: 2px; }
/* Compact icon: single pixel athlete glyph instead of full 22-row sprite */
.crt--nav .sprite { display: none !important; }
.crt--nav .crt-screen::before { display: none; }
.crt--nav .crt-icon {
  position: relative;
  z-index: 2;
  width: 8px; height: 14px;
  margin-top: 6px;
  background: var(--bone);
  box-shadow:
    /* head */
    0 -8px 0 -1px var(--bone),
    /* gold accent stripe */
    0 0 0 0 transparent,
    inset 0 -3px 0 var(--gold);
}
.crt--nav .crt-icon::before {
  content: "";
  position: absolute;
  top: -10px; left: 50%; transform: translateX(-50%);
  width: 6px; height: 6px;
  background: var(--bone);
  border-radius: 1px;
}
.crt--nav .crt-icon::after {
  content: "";
  position: absolute;
  bottom: -2px; left: -2px; right: -2px;
  height: 2px;
  background: var(--crimson);
}

.crt--sm .crt-screen { padding: 18px 10px 6px; }
.crt--sm .crt-live { font-size: 6px; padding: 2px 5px 1px; }

/* ─────────── NAV ─────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  background: rgba(5,6,10,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.nav-brand .wordmark {
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.06em;
  display: inline-flex;
  gap: 0.4em;
  line-height: 1;
}
.nav-brand .watch { color: var(--bone); text-shadow: 0 2px 0 #1a1a1a; }
.nav-brand .party { color: var(--crimson); text-shadow: 0 2px 0 var(--crimson-deep); }
.nav-brand .games { color: var(--gold); font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; align-self: flex-end; padding-bottom: 1px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  color: var(--gray-400);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 4px;
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--bone); background: rgba(245,237,224,0.04); }
.nav-cta {
  background: var(--crimson) !important;
  color: #fff !important;
  box-shadow: 0 3px 0 var(--crimson-deep);
  margin-left: 6px;
}
.nav-cta:hover { background: #ec3838 !important; transform: translateY(-1px); box-shadow: 0 4px 0 var(--crimson-deep); }

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.nav-mobile-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--bone); border-radius: 1px;
}

/* ─────────── HERO ─────────── */
.hero {
  position: relative;
  min-height: 92vh;
  padding: 60px 24px 80px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 50% 30%, rgba(214,40,40,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 80%, rgba(244,185,46,0.08) 0%, transparent 60%),
    var(--black);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(245,237,224,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,237,224,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 80%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  display: flex; flex-direction: column; align-items: center; gap: 28px;
}
.hero-mark { margin-bottom: 8px; }
.hero h1 {
  font-family: var(--display);
  font-size: clamp(28px, 5.4vw, 64px);
  line-height: 1.1;
  letter-spacing: 0.02em;
  display: flex; flex-wrap: wrap; gap: 0.4em; justify-content: center;
}
.hero h1 .watch { color: var(--bone); text-shadow: 0 4px 0 #1a1a1a; }
.hero h1 .party { color: var(--crimson); text-shadow: 0 4px 0 var(--crimson-deep); }
.hero h1 .games { color: var(--gold); text-shadow: 0 4px 0 var(--gold-deep); }
.hero-tag {
  font-family: var(--mono);
  font-size: clamp(14px, 1.6vw, 18px);
  font-weight: 600;
  color: var(--bone);
  letter-spacing: 0.04em;
  max-width: 640px;
}
.hero-sub {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--gray-400);
  max-width: 580px;
  line-height: 1.7;
}
.gold-bar {
  height: 4px; width: 220px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-deep), transparent);
}
.hero-actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-top: 6px;
}
.hero-meta {
  margin-top: 32px;
  display: inline-flex; align-items: center; gap: 14px;
  padding: 8px 14px;
  background: rgba(5,6,10,0.6);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-400);
}
.hero-meta .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--crt-green); box-shadow: 0 0 10px var(--crt-green); animation: blink 1.6s steps(2,end) infinite; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .1s, box-shadow .15s, background .15s;
  border-radius: 2px;
}
.btn-primary {
  background: var(--crimson);
  color: #fff;
  box-shadow: 0 4px 0 var(--crimson-deep);
}
.btn-primary:hover { background: #ec3838; transform: translateY(-2px); box-shadow: 0 6px 0 var(--crimson-deep); }
.btn-primary:active { transform: translateY(2px); box-shadow: 0 2px 0 var(--crimson-deep); }

.btn-secondary {
  background: transparent;
  color: var(--bone);
  border: 2px solid var(--bone);
  box-shadow: 0 4px 0 rgba(245,237,224,0.15);
}
.btn-secondary:hover { background: rgba(245,237,224,0.06); transform: translateY(-2px); box-shadow: 0 6px 0 rgba(245,237,224,0.15); }

.btn-gold {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 4px 0 var(--gold-deep);
}
.btn-gold:hover { background: #ffd665; transform: translateY(-2px); box-shadow: 0 6px 0 var(--gold-deep); }

/* ─────────── SECTIONS ─────────── */
section { padding: 100px 24px; }
.container { max-width: 1100px; margin: 0 auto; }

.section-label {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.section-label::before {
  content: "";
  width: 24px; height: 2px;
  background: var(--gold);
}
.section-title {
  font-family: var(--display);
  font-size: clamp(20px, 3vw, 30px);
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: var(--bone);
  margin-bottom: 18px;
}
.section-title .accent { color: var(--crimson); }
.section-sub {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--gray-400);
  max-width: 600px;
  line-height: 1.7;
}

#services { background: var(--navy); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.services-header { margin-bottom: 56px; }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.card {
  background: var(--black);
  border: 1px solid var(--line);
  padding: 32px 28px 36px;
  position: relative;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold);
  opacity: 0; transition: opacity .2s;
}
.card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
}
.card:hover::before { opacity: 1; }
.card-num {
  font-family: var(--display);
  font-size: 10px;
  color: var(--crimson);
  letter-spacing: 0.16em;
  margin-bottom: 14px;
  display: block;
}
.card-title {
  font-family: var(--display);
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--bone);
  margin-bottom: 14px;
}
.card-desc {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--gray-400);
  line-height: 1.7;
}
.card-tag {
  display: inline-block;
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-deep);
  padding: 4px 10px;
  border-radius: 2px;
}

/* ─────────── WORK ─────────── */
#work { background: var(--black); }
.work-header { margin-bottom: 56px; }

.work-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  background: var(--navy);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.work-card:hover { border-color: var(--crimson); box-shadow: 0 16px 60px rgba(0,0,0,0.5); }

.work-visual {
  background:
    radial-gradient(ellipse at 30% 30%, rgba(214,40,40,0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 70%, rgba(244,185,46,0.12) 0%, transparent 60%),
    #0a1a12;
  min-height: 340px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  border-right: 1px solid var(--line);
}
.work-visual::after {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(to bottom, rgba(0,0,0,0.4) 0 1px, transparent 1px 3px);
  pointer-events: none;
}

.work-content {
  padding: 44px 36px;
  display: flex; flex-direction: column; justify-content: center;
}
.work-status {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(60, 212, 107, 0.1);
  border: 1px solid rgba(60, 212, 107, 0.4);
  color: var(--crt-green);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  padding: 5px 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
  width: fit-content;
}
.work-status::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--crt-green); box-shadow: 0 0 8px var(--crt-green);
}
.work-title {
  font-family: var(--display);
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: var(--bone);
  margin-bottom: 18px;
}
.work-desc {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 22px;
}
.work-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 24px;
}
.work-tag {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-300);
  background: rgba(245,237,224,0.04);
  border: 1px solid var(--line);
  padding: 4px 9px;
}
.work-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold);
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-decoration: none;
  transition: gap .15s;
}
.work-link:hover { gap: 14px; color: #ffd665; }

/* ─────────── HOW IT WORKS ─────────── */
#how { background: var(--navy); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.how-header { margin-bottom: 64px; text-align: center; }
.how-header .section-label { justify-content: center; }
.how-header .section-sub { margin: 0 auto; }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  position: relative;
}
.step {
  text-align: center;
  padding: 0 16px;
}
.step-coin {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffe19a 0%, var(--gold) 45%, var(--gold-deep) 100%);
  box-shadow:
    inset 0 0 0 3px var(--gold-deep),
    inset 0 0 0 5px var(--gold),
    inset 0 0 0 7px var(--gold-deep),
    0 6px 20px rgba(0,0,0,0.4);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-size: 18px;
  color: var(--black);
  margin: 0 auto 24px;
}
.step-title {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--bone);
  margin-bottom: 12px;
  line-height: 1.5;
}
.step-desc {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--gray-400);
  line-height: 1.7;
}

/* ─────────── CONTACT ─────────── */
#contact { background: var(--black); position: relative; overflow: hidden; }
#contact::before {
  content: "";
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(214,40,40,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.contact-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--display);
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: var(--bone);
  margin-bottom: 18px;
}
.contact-info > p {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 32px;
}
.contact-detail {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 18px;
  padding: 14px;
  background: var(--navy);
  border: 1px solid var(--line);
}
.contact-detail-icon {
  width: 40px; height: 40px;
  background: var(--black);
  border: 1px solid var(--gold-deep);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-size: 9px;
  color: var(--gold);
  flex-shrink: 0;
  letter-spacing: 0.1em;
}
.contact-detail-label {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 4px;
}
.contact-detail-value {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--bone);
}
.contact-detail-value a { color: var(--bone); }
.contact-detail-value a:hover { color: var(--gold); }

/* Form */
.contact-form-wrap {
  background: var(--navy);
  border: 1px solid var(--line);
  padding: 36px;
  position: relative;
}
.contact-form-wrap::before {
  content: "";
  position: absolute; top: -1px; left: -1px; right: -1px; height: 4px;
  background: linear-gradient(90deg, var(--crimson), var(--gold), var(--crimson));
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  background: var(--black);
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--bone);
  font-family: var(--mono);
  font-size: 14px;
  padding: 12px 14px;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  -webkit-appearance: none;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(244,185,46,0.2);
}
.form-row input::placeholder,
.form-row textarea::placeholder { color: var(--gray-700); }
.form-row textarea { resize: vertical; min-height: 120px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--crimson);
  color: #fff;
  border: none;
  border-radius: 2px;
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.14em;
  cursor: pointer;
  box-shadow: 0 4px 0 var(--crimson-deep);
  transition: transform .1s, background .15s;
}
.form-submit:hover { background: #ec3838; transform: translateY(-2px); box-shadow: 0 6px 0 var(--crimson-deep); }
.form-submit:active { transform: translateY(2px); box-shadow: 0 2px 0 var(--crimson-deep); }
.form-note {
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gray-500);
  margin-top: 14px;
  letter-spacing: 0.06em;
}

/* ─────────── FOOTER ─────────── */
footer {
  background: var(--black);
  border-top: 4px solid var(--crimson);
  padding: 48px 24px 32px;
  position: relative;
}
footer::before {
  content: "";
  position: absolute; top: -4px; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--crimson) 0%, var(--crimson) 33%, var(--gold) 33%, var(--gold) 66%, var(--bone) 66%);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer-brand-block { display: flex; flex-direction: column; gap: 12px; }
.footer-brand-block .wordmark {
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.06em;
  display: inline-flex;
  gap: 0.4em;
}
.footer-brand-block .watch { color: var(--bone); }
.footer-brand-block .party { color: var(--crimson); }
.footer-brand-block .games { color: var(--gold); font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; align-self: flex-end; padding-bottom: 1px; }
.footer-tag {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gray-500);
  letter-spacing: 0.08em;
}

.footer-col h4 {
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col a {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--gray-300);
  letter-spacing: 0.04em;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1100px;
  margin: 36px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--gray-500);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ─────────── LEGAL PAGES ─────────── */
.legal-header {
  background: var(--navy);
  border-bottom: 1px solid var(--line);
  padding: 80px 24px 60px;
  text-align: center;
  position: relative;
}
.legal-header::after {
  content: "";
  position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.legal-header h1 {
  font-family: var(--display);
  font-size: clamp(24px, 4vw, 36px);
  letter-spacing: 0.04em;
  color: var(--bone);
  text-shadow: 0 4px 0 #1a1a1a;
  margin-bottom: 12px;
}
.legal-header .updated {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.legal-content {
  max-width: 760px;
  margin: 64px auto;
  padding: 0 24px 96px;
}
.legal-content h2 {
  font-family: var(--display);
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--bone);
  margin: 48px 0 16px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.legal-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.legal-content p {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.85;
  margin-bottom: 14px;
}
.legal-content ul, .legal-content ol {
  padding-left: 22px;
  margin-bottom: 14px;
}
.legal-content li {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.85;
  margin-bottom: 8px;
}
.legal-content li::marker { color: var(--gold); }
.legal-content strong { color: var(--bone); font-weight: 600; }
.legal-content a { color: var(--gold); text-decoration: none; border-bottom: 1px solid var(--gold-deep); }
.legal-content a:hover { color: #ffd665; }

.callout {
  background: rgba(244,185,46,0.06);
  border: 1px solid var(--gold-deep);
  border-left: 4px solid var(--gold);
  padding: 20px 22px;
  margin: 28px 0;
  position: relative;
}
.callout::before {
  content: "★ INSERT COIN";
  position: absolute;
  top: -10px; left: 16px;
  background: var(--black);
  padding: 2px 8px;
  font-family: var(--display);
  font-size: 8px;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.callout p { color: var(--gray-300); margin: 0; }

.warning {
  background: rgba(214,40,40,0.06);
  border: 1px solid var(--crimson-deep);
  border-left: 4px solid var(--crimson);
  padding: 20px 22px;
  margin: 28px 0;
  position: relative;
}
.warning::before {
  content: "▲ WARNING";
  position: absolute;
  top: -10px; left: 16px;
  background: var(--black);
  padding: 2px 8px;
  font-family: var(--display);
  font-size: 8px;
  letter-spacing: 0.2em;
  color: var(--crimson);
}
.warning p { color: var(--gray-300); margin: 0; font-family: var(--mono); font-size: 12px; line-height: 1.8; }

.nav-back {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gray-400);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.nav-back:hover { color: var(--gold); }

/* ─────────── TOAST ─────────── */
.toast {
  position: fixed;
  bottom: 24px; right: 24px;
  background: var(--navy);
  border: 1px solid var(--gold);
  border-left: 4px solid var(--gold);
  padding: 14px 20px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--bone);
  letter-spacing: 0.06em;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  transform: translateY(80px);
  opacity: 0;
  transition: all .35s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 999;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ─────────── RESPONSIVE ─────────── */
@media (max-width: 880px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    background: var(--black);
    border-bottom: 1px solid var(--line);
    padding: 16px;
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-mobile-toggle { display: flex; }

  section { padding: 72px 18px; }

  .work-card { grid-template-columns: 1fr; }
  .work-visual { min-height: 240px; border-right: none; border-bottom: 1px solid var(--line); }
  .work-content { padding: 32px 24px; }

  .contact-inner { grid-template-columns: 1fr; gap: 36px; }
  .form-grid { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 28px; }

  .hero-actions { flex-direction: column; align-items: stretch; width: 100%; max-width: 320px; }
  .hero-actions .btn { justify-content: center; }
}
