/* Dogfight: Buzz the Tower — landing site styles
   Dark dusk palette lifted from the in-game airfield theme:
   #1E183A (night navy) -> #894890 (dusk purple) -> #FCAC60 (horizon orange) */

:root {
  --navy: #15112a;
  --navy-2: #1e183a;
  --purple: #894890;
  --orange: #fcac60;
  --orange-2: #e8934a;
  --cream: #fbf3e6;
  --ink: #12101c;
  --panel: rgba(255, 255, 255, 0.05);
  --panel-border: rgba(255, 255, 255, 0.12);
  --muted: #c9c0d8;
  --max-width: 960px;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 45%, var(--purple) 100%);
  background-attachment: fixed;
  color: var(--cream);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  min-height: 100vh;
}

a {
  color: var(--orange);
}

a:hover,
a:focus {
  color: var(--orange-2);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header / hero */

.hero {
  padding-top: 28px;
}

.brandbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 0 18px;
  font-size: 0.9rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.brandbar strong {
  color: var(--cream);
}

.hero-art {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--panel-border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.hero-art img {
  width: 100%;
  display: block;
}

.hero-copy {
  text-align: center;
  padding: 30px 0 10px;
}

.hero-copy h1 {
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.hero-copy .subtitle {
  font-size: clamp(1.05rem, 2.6vw, 1.3rem);
  color: var(--orange);
  font-weight: 600;
  margin: 0 0 4px;
}

/* Three-step strip */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 30px 0;
  list-style: none;
  padding: 0;
}

.step {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 12px;
  padding: 18px 16px;
  text-align: center;
}

.step .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 10px;
}

.step p {
  margin: 0;
  font-size: 0.98rem;
}

.tv-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  margin: -8px 0 34px;
}

.tv-note a {
  font-weight: 600;
}

/* Section headings */

section {
  margin: 48px 0;
}

.section-title {
  text-align: center;
  font-size: 1.4rem;
  margin: 0 0 6px;
}

.section-sub {
  text-align: center;
  color: var(--muted);
  margin: 0 0 22px;
  font-size: 0.98rem;
}

/* Scenery strip */

.scenery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.scenery-strip figure {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--panel-border);
  background: var(--panel);
}

.scenery-strip img {
  width: 100%;
  display: block;
}

.scenery-strip figcaption {
  padding: 8px 10px;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}

/* Modes list */

.modes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.mode-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 12px;
  padding: 18px;
}

.mode-card h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  color: var(--orange);
}

.mode-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

/* Store badges (placeholders, no fake artwork) */

.store-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 20px 0 8px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  border: 1px solid var(--panel-border);
  background: var(--panel);
  color: var(--cream);
  font-weight: 600;
  font-size: 0.98rem;
  cursor: default;
  user-select: none;
}

.store-badge .platform {
  color: var(--orange);
}

.coming-soon {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 6px;
}

/* Parents line */

.parents-line {
  text-align: center;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 12px;
  padding: 18px 20px;
  font-size: 1rem;
  max-width: 640px;
  margin: 0 auto;
}

.parents-line strong {
  color: var(--orange);
}

/* Footer */

footer {
  border-top: 1px solid var(--panel-border);
  margin-top: 56px;
  padding: 26px 0 40px;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}

footer p {
  margin: 4px 0;
}

footer a {
  color: var(--muted);
  text-decoration: underline;
}

footer a:hover {
  color: var(--orange);
}

/* Simple pages: tv redirect / 404 */

.center-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
}

.center-page h1 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.center-page p {
  color: var(--muted);
  max-width: 420px;
}

.btn {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 24px;
  border-radius: 10px;
  background: var(--orange);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.btn:hover {
  background: var(--orange-2);
  color: var(--ink);
}

/* Responsive */

@media (max-width: 700px) {
  .steps,
  .scenery-strip,
  .modes {
    grid-template-columns: 1fr;
  }

  .brandbar {
    font-size: 0.8rem;
  }
}
