body {
  margin: 0;
  font-family: "Sora", sans-serif;
  color: #2f1620;
  background:
    linear-gradient(118deg, rgba(255, 197, 128, 0.52) 0%, rgba(255, 232, 181, 0.25) 34%, rgba(255, 154, 179, 0.37) 100%),
    #fff4eb;
}

* {
  box-sizing: border-box;
}

.nv-shell {
  width: min(1380px, calc(100% - 2rem));
  margin: 0 auto;
}

.nv-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, #fff5ec 87%, transparent);
  backdrop-filter: blur(9px);
  border-bottom: 1px solid #f0d1bf;
}

.nv-header-row {
  width: min(1380px, calc(100% - 2rem));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nv-logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #541f34;
}

.nv-logo-glyph {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: conic-gradient(from 200deg, #ffcc6a, #ff7f99, #ffcc6a);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  color: #451324;
  font-weight: 900;
}

.nv-burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid #dfb9a5;
  background: #ffeade;
  border-radius: 12px;
  color: #5d3042;
}

.nv-burger span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  margin: 4px auto;
}

.nv-nav {
  display: flex;
  gap: 0.55rem;
}

.nv-nav a {
  text-decoration: none;
  color: #693246;
  font-weight: 700;
  border-radius: 14px;
  padding: 0.45rem 0.8rem;
}

.nv-nav a:hover,
.nv-nav a.nv-live {
  background: #ffd8ca;
  color: #4f1f2f;
}

main {
  width: min(1380px, calc(100% - 2rem));
  margin: 1rem auto 2.3rem;
}

.nv-mast {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 1rem;
}

.nv-sheet {
  background: #fff7f1;
  border: 1px solid #f2d4c4;
  border-radius: 26px;
  padding: 1.2rem;
  box-shadow: 0 22px 34px rgba(127, 66, 65, 0.12);
}

.nv-sheet h1,
.nv-sheet h2 {
  margin: 0 0 0.6rem;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.01em;
  color: #4b1e2b;
}

.nv-sheet h1 {
  font-size: clamp(1.8rem, 3.8vw, 3rem);
}

.nv-pill-notes {
  margin: 1rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.nv-pill-notes span {
  border-radius: 999px;
  padding: 0.5rem 0.85rem;
  font-weight: 700;
  background: #ffe4d2;
  color: #63293b;
  border: 1px solid #efc7b2;
}

.nv-side-stack {
  display: grid;
  gap: 1rem;
}

.nv-tile {
  background: linear-gradient(150deg, #ffe6d3, #ffd2c6);
  border: 1px solid #efbca8;
  border-radius: 20px;
  padding: 1rem;
}

.nv-tile h3 {
  margin-top: 0;
  font-family: "Space Grotesk", sans-serif;
}

.nv-bar {
  height: 14px;
  background: #ffebdc;
  border-radius: 999px;
  border: 1px solid #efc7b2;
  overflow: hidden;
}

.nv-bar span {
  display: block;
  height: 100%;
  width: 72%;
  background: linear-gradient(90deg, #ffaf66, #ff6d8a);
}

.nv-playbox {
  margin-top: 1rem;
  background: #fff8f3;
  border: 1px solid #efccb7;
  border-radius: 28px;
  padding: 0.85rem;
}

.nv-playbox iframe {
  width: 100%;
  height: min(72vw, 660px);
  border: 0;
  border-radius: 20px;
  background: #000;
}

.nv-columns {
  margin-top: 1rem;
  columns: 3 240px;
  column-gap: 1rem;
}

.nv-columns .nv-sheet {
  break-inside: avoid;
  margin-bottom: 1rem;
}

.nv-footer {
  border-top: 1px solid #eac8b3;
  padding: 1rem 0 1.8rem;
}

.nv-footer-inside {
  width: min(1380px, calc(100% - 2rem));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.9rem;
  color: #744055;
}

.nv-safety {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.nv-safety a {
  color: #5e2a3d;
  text-decoration: none;
  border-bottom: 1px solid #c96e88;
}

.nv-gate {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(40, 14, 23, 0.74);
}

.nv-gate[hidden] {
  display: none;
}

.nv-gate-card {
  width: min(560px, 100%);
  background: #fff5ee;
  border: 1px solid #efc7b2;
  border-radius: 22px;
  padding: 1.15rem;
}

.nv-gate-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.8rem;
}

.nv-gate-actions button {
  border: 0;
  cursor: pointer;
  border-radius: 12px;
  font-weight: 800;
  padding: 0.65rem 0.9rem;
}

.nv-ok {
  background: linear-gradient(120deg, #ffb35c, #ff708f);
  color: #3a1120;
}

.nv-stop {
  background: #e1b4bf;
  color: #4d1f31;
}

.nv-gate-note {
  min-height: 1.4em;
  color: #ad274f;
}

@media (max-width: 980px) {
  .nv-mast {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nv-burger {
    display: inline-block;
  }

  .nv-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.25rem);
    display: none;
    flex-direction: column;
    background: #fff7f1;
    border: 1px solid #f0c8b4;
    border-radius: 16px;
    padding: 0.7rem;
  }

  .nv-nav.nv-show {
    display: flex;
  }
}
