:root {
  --ink: #231d33;
  --muted: #695f78;
  --paper: #fffafc;
  --surface: rgba(255, 255, 255, 0.78);
  --line: rgba(67, 52, 93, 0.14);
  --pink: #da386f;
  --orange: #f4a51f;
  --aqua: #78cbdb;
  --green: #7fc99a;
  --violet: #a996cd;
  --blue: #5f9bd0;
  --shadow: 0 28px 80px rgba(44, 33, 72, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(120, 203, 219, 0.24), transparent 30rem),
    radial-gradient(circle at 88% 16%, rgba(244, 165, 31, 0.18), transparent 24rem),
    linear-gradient(180deg, #fff 0%, var(--paper) 42%, #ffffff 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.hero {
  min-height: 92vh;
  padding: 26px clamp(18px, 5vw, 72px) 54px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 250, 252, 0.92)),
    url("./assets/bgplay.jpg") top center / 100% 66px repeat-x;
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
  font-size: 1rem;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  border-radius: 999px;
}

.nav-links a {
  padding: 10px 14px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 999px;
}

.nav-links a:hover {
  color: var(--ink);
  background: rgba(169, 150, 205, 0.16);
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 410px);
  align-items: center;
  gap: clamp(36px, 6vw, 90px);
  max-width: 1180px;
  margin: 72px auto 0;
}

.hero-copy {
  max-width: 710px;
}

.eyebrow,
.section-kicker,
.panel-label {
  display: inline-flex;
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(3.6rem, 9vw, 8.2rem);
  line-height: 0.88;
  letter-spacing: 0;
  max-width: 780px;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.lead {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.1;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  box-shadow: 0 18px 38px rgba(218, 56, 111, 0.26);
}

.button.ghost {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.privacy-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 22px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.66)),
    linear-gradient(135deg, rgba(120, 203, 219, 0.28), rgba(218, 56, 111, 0.16));
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.privacy-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 10px;
  background: url("./assets/bgplay.jpg") center / cover repeat-x;
}

.panel-logo {
  width: min(230px, 72%);
  justify-self: center;
  filter: drop-shadow(0 20px 28px rgba(61, 43, 80, 0.16));
}

.privacy-panel strong {
  display: block;
  margin-top: 5px;
  font-size: 1.35rem;
}

.privacy-panel p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.68;
}

.panel-rule {
  width: 100%;
  height: 1px;
  background: var(--line);
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1180px;
  margin: -36px auto 0;
  padding: 0 clamp(18px, 5vw, 0px);
  gap: 16px;
  position: relative;
  z-index: 2;
}

.commitment {
  min-height: 172px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 48px rgba(44, 33, 72, 0.1);
}

.commitment span {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--pink);
  font-weight: 800;
}

.commitment strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.commitment p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.policy-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 760px);
  align-items: start;
  gap: clamp(26px, 5vw, 72px);
  max-width: 1180px;
  margin: 86px auto 0;
  padding: 0 clamp(18px, 5vw, 0px) 72px;
}

.toc {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
}

.toc p {
  margin: 0 0 8px;
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.toc a {
  padding: 10px 12px;
  color: var(--muted);
  border-radius: 8px;
  font-weight: 700;
}

.toc a:hover {
  color: var(--ink);
  background: rgba(120, 203, 219, 0.16);
}

.policy-content {
  display: grid;
  gap: 22px;
}

.policy-section,
.contact-section {
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.policy-section p,
.contact-section p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.78;
}

.policy-section p:last-child,
.contact-section p:last-child {
  margin-bottom: 0;
}

.highlight {
  margin-top: 24px;
  padding: 20px;
  color: #4c405f;
  line-height: 1.68;
  border-left: 5px solid var(--orange);
  background: linear-gradient(90deg, rgba(244, 165, 31, 0.14), rgba(120, 203, 219, 0.1));
  border-radius: 0 8px 8px 0;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 22px;
  background:
    linear-gradient(135deg, rgba(169, 150, 205, 0.2), rgba(120, 203, 219, 0.14)),
    rgba(255, 255, 255, 0.86);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: var(--muted);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.9)),
    url("./assets/bgplay.jpg") bottom center / 100% 66px repeat-x;
  border-top: 1px solid var(--line);
  text-align: center;
}

.footer img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.footer p {
  margin: 0;
  line-height: 1.5;
}

.footer a {
  color: var(--pink);
  font-weight: 800;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
  }

  .hero-content,
  .policy-shell,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-content {
    margin-top: 48px;
  }

  .intro-band {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .toc {
    position: static;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 18px;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    border-radius: 8px;
  }

  .nav-links a {
    flex: 1;
    padding: 10px 8px;
    text-align: center;
  }

  h1 {
    font-size: clamp(3.1rem, 17vw, 4.7rem);
  }

  .button {
    width: 100%;
  }

  .privacy-panel,
  .policy-section,
  .contact-section,
  .commitment {
    padding: 22px;
  }

  .footer {
    flex-direction: column;
  }
}
