:root {
  --black: #0a0a0a;
  --dark: #111;
  --surface: #181818;
  --border: #2a2a2a;
  --gold: #c8a84e;
  --gold-light: #e0c675;
  --white: #f5f5f5;
  --gray: #a7a7a7;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.7;
}
a {
  color: var(--gold-light);
}
nav {
  position: sticky;
  top: 0;
  z-index: 5;
  min-height: 72px;
  padding: 0 clamp(1rem, 4vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 10, 10, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--white);
  text-decoration: none;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.55rem;
  letter-spacing: 0.12em;
}
.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}
.brand span {
  color: var(--gold);
}
.back {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.hero {
  padding: clamp(3.5rem, 8vw, 7rem) 1.25rem 2.5rem;
  text-align: center;
  background: radial-gradient(
    circle at 50% 0,
    rgba(200, 168, 78, 0.16),
    transparent 48%
  );
}
.eyebrow {
  color: var(--gold);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0.4rem 0 0.7rem;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(3rem, 8vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
}
.updated {
  color: var(--gray);
  font-size: 0.85rem;
}
.legal {
  width: min(880px, calc(100% - 2rem));
  margin: 0 auto 5rem;
  padding: clamp(1.4rem, 4vw, 3rem);
  background: linear-gradient(180deg, var(--surface), var(--dark));
  border: 1px solid rgba(200, 168, 78, 0.2);
  border-radius: 18px;
}
.legal .intro {
  font-size: 1.05rem;
  color: #d7d7d7;
}
.legal h2 {
  margin: 2.2rem 0 0.55rem;
  color: var(--gold-light);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.75rem;
  letter-spacing: 0.05em;
}
.legal p,
.legal li {
  color: #c8c8c8;
}
.legal ul {
  padding-left: 1.25rem;
}
.legal strong {
  color: var(--white);
}
footer {
  padding: 1.6rem;
  text-align: center;
  color: var(--gray);
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
}
footer a {
  margin: 0 0.55rem;
  text-decoration: none;
}
@media (max-width: 560px) {
  nav {
    min-height: 64px;
    gap: 0.5rem;
  }
  .brand {
    min-width: 0;
    font-size: 1.12rem;
    letter-spacing: 0.08em;
  }
  .brand img {
    width: 40px;
    height: 40px;
  }
  .back {
    font-size: 0;
    white-space: nowrap;
  }
  .back::after {
    content: "Store";
    font-size: 0.66rem;
  }
  .legal {
    border-radius: 12px;
  }
}
