* {
  box-sizing: border-box;
}

.dz-body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: #3a2d43;
  background:
    radial-gradient(circle at 12% 0%, #ffd6f0 0%, transparent 38%),
    radial-gradient(circle at 88% 8%, #c8f0ff 0%, transparent 40%),
    linear-gradient(180deg, #fff8fd 0%, #fffdf8 100%);
}

.dz-header {
  width: min(1260px, 95vw);
  margin: 0 auto;
  padding: 0.9rem 0;
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 0.8rem;
}

.dz-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: #503460;
  font-weight: 700;
}

.dz-brand img {
  width: 42px;
  height: 42px;
}

.dz-burger {
  display: none;
  width: 42px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid #ddb6e2;
  background: #fff;
  padding: 0.45rem;
}

.dz-burger span {
  display: block;
  height: 3px;
  margin: 4px 0;
  border-radius: 99px;
  background: #8e6d9a;
}

.dz-nav {
  margin-left: auto;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.dz-nav a {
  text-decoration: none;
  color: #6a4b79;
  background: #fff;
  border: 1px solid #ead5ec;
  border-radius: 999px;
  padding: 0.42rem 0.88rem;
}

.dz-main {
  width: min(1280px, 96vw);
  margin: 0 auto 2.2rem;
}

.dz-hero {
  background: linear-gradient(145deg, #ffe8f6, #ebf9ff);
  border: 1px solid #e5c6e8;
  border-radius: 30px;
  padding: clamp(1.25rem, 3.8vw, 2.7rem);
}

.dz-kicker {
  margin: 0;
  font-family: "Caveat", cursive;
  font-size: 1.4rem;
  color: #ad6eb7;
}

.dz-hero h1,
.dz-grid h2,
.dz-stage h2,
.dz-play h1,
.dz-doc h1,
.dz-doc h2 {
  margin-top: 0.2rem;
}

.dz-grid {
  margin-top: 1rem;
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dz-grid article,
.dz-stage,
.dz-play,
.dz-doc {
  border-radius: 20px;
  border: 1px solid #ebd7ea;
  background: #ffffff;
  padding: 1rem;
  box-shadow: 0 12px 18px rgba(164, 125, 174, 0.12);
}

.dz-stage {
  margin-top: 1rem;
}

.dz-stage iframe,
.dz-play iframe {
  width: 100%;
  min-height: 650px;
  border: 0;
  border-radius: 14px;
  background: #000;
}

.dz-play,
.dz-doc {
  width: min(1080px, 94vw);
  margin: 1rem auto 2rem;
}

.dz-note {
  color: #7f5d8d;
}

.dz-footer {
  text-align: center;
  padding: 1.3rem 1rem 2rem;
  border-top: 1px solid #edd9ef;
}

.dz-footer div {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.dz-footer a {
  color: #79558a;
}

.dz-gate {
  position: fixed;
  inset: 0;
  z-index: 45;
  display: none;
  place-items: center;
  padding: 1rem;
  background: rgba(52, 22, 64, 0.6);
}

.dz-gate.on {
  display: grid;
}

.dz-gate-panel {
  width: min(460px, 95vw);
  border-radius: 19px;
  padding: 1.2rem;
  border: 1px solid #eac3ec;
  background: #fff;
}

.dz-tight {
  color: #80598b;
}

.dz-gate-row {
  display: flex;
  gap: 0.8rem;
}

.dz-gate-row button {
  flex: 1;
  border: 0;
  border-radius: 10px;
  padding: 0.65rem;
  font-weight: 700;
}

.dz-gate-row button[data-dz-age="yes"] {
  background: #ffb7dc;
  color: #4d204f;
}

.dz-gate-row button[data-dz-age="no"] {
  background: #b8dff4;
  color: #1f445c;
}

body.dz-stop {
  overflow: hidden;
}

@media (max-width: 900px) {
  .dz-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .dz-header {
    grid-template-columns: 1fr auto;
  }

  .dz-burger {
    display: block;
  }

  .dz-nav {
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
  }

  .dz-nav.open {
    display: flex;
  }

  .dz-stage iframe,
  .dz-play iframe {
    min-height: 500px;
  }
}
