:root {
  --bg: #161512;
  --panel: #fff8e8;
  --ink: #1d1a14;
  --muted: #6b6559;
  --line: rgba(29, 26, 20, 0.14);
  --coral: #ff5a3c;
  --gold: #ffc947;
  --cyan: #00b9df;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff8e8;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px clamp(16px, 4vw, 48px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 248, 232, 0.92);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--coral), var(--gold));
}

.language-nav {
  display: flex;
  gap: 8px;
}

.language-nav a {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.86rem;
}

.language-nav a[aria-current="page"] {
  background: var(--ink);
  color: #fff8e8;
}

.hero {
  display: grid;
  grid-template-columns: minmax(260px, 420px) 1fr;
  gap: clamp(18px, 4vw, 42px);
  min-height: calc(100dvh - 64px);
  padding: clamp(18px, 4vw, 48px);
}

.hero-copy {
  align-self: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 16px;
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  line-height: 0.94;
}

.lead {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.55;
}

.play-frame-wrap {
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg);
  box-shadow: 0 24px 70px rgba(29, 26, 20, 0.2);
}

.play-frame {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
}

.site-footer {
  padding: 24px clamp(16px, 4vw, 48px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 880px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-copy {
    align-self: start;
  }

  .play-frame-wrap,
  .play-frame {
    min-height: 620px;
  }
}

@media (max-width: 520px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .language-nav {
    width: 100%;
  }

  .language-nav a {
    flex: 1;
    text-align: center;
  }

  .hero {
    padding: 16px;
  }
}
