/* ===========================
   RESET & BASE
=========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: 'Quicksand', sans-serif;
  background: #2c5e94;
  color: #ffe066;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

.watch-page {
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 55%), #0b1d39;
  color: #fefae0;
}

.solar-page {
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.18), transparent 60%), #050d1a;
  color: #fefae0;
}

a {
  color: #7fffe1;
  text-decoration: underline;
  font-weight: 600;
}

a:visited {
  color: #49d8c5;
}

img, svg {
  max-width: 100%;
  height: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ===========================
   TYPOGRAPHY
=========================== */
.handwritten {
  font-family: 'Caveat', cursive;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 5px rgba(255, 224, 100, 0.8);
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  text-shadow: 0 0 3px rgba(255, 224, 100, 0.7);
}

p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.4);
}

/* ===========================
   HERO & STARS
=========================== */
#starfield {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 0;
  pointer-events: none;
}

/* Each star twinkles differently */
.twinkle1 { animation: twinkle 1s ease-in-out infinite alternate; }
.twinkle2 { animation: twinkle 1.3s ease-in-out infinite alternate; }
.twinkle3 { animation: twinkle 0.9s ease-in-out infinite alternate; }
.twinkle4 { animation: twinkle 1.5s ease-in-out infinite alternate; }
.twinkle5 { animation: twinkle 1.1s ease-in-out infinite alternate; }

@keyframes twinkle {
  0% { opacity: 0.2; }
  100% { opacity: 1; }
}

/* ===========================
   CLOUDS
=========================== */
.cloud {
  position: absolute;
  opacity: 0.5;
  z-index: 2;
  pointer-events: none;
}

.cloud1 { left: 5%; top: 2rem; animation: cloudMove1 3s ease-in-out infinite alternate; }
.cloud2 { left: 10%; top: 6rem; animation: cloudMove2 3.2s ease-in-out infinite alternate; }
.cloud3 { right: 5%; top: 2rem; animation: cloudMove3 2.8s ease-in-out infinite alternate; }
.cloud4 { right: 10%; top: 8rem; animation: cloudMove4 3.4s ease-in-out infinite alternate; }

@keyframes cloudMove1 { 0% { transform: translateX(0); } 100% { transform: translateX(12px); } }
@keyframes cloudMove2 { 0% { transform: translateX(0); } 100% { transform: translateX(10px); } }
@keyframes cloudMove3 { 0% { transform: translateX(0); } 100% { transform: translateX(-12px); } }
@keyframes cloudMove4 { 0% { transform: translateX(0); } 100% { transform: translateX(-10px); } }

/* ===========================
   LAYOUT
=========================== */
.hero,
.section,
footer {
  position: relative;
  z-index: 3;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
}

.hero {
  padding: 8rem 2rem 5rem 2rem;
}

.watch-hero {
  background:
    radial-gradient(circle at top left, rgba(255, 224, 102, 0.18), transparent 32%),
    radial-gradient(circle at top right, rgba(127, 255, 225, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(10, 24, 49, 0.97), rgba(28, 59, 108, 0.92));
  padding: 3.5rem 1.5rem 2.75rem;
  text-align: left;
}

.watch-hero-content {
  max-width: 1180px;
  margin: 0 auto;
}

.watch-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(240px, 0.9fr);
  gap: 1.75rem;
  align-items: center;
}

.watch-page h1,
.watch-page h2,
.watch-page p {
  text-shadow: none;
}

.watch-page h1 {
  font-size: clamp(2.9rem, 6vw, 4.7rem);
  line-height: 0.95;
  margin-bottom: 0;
}

.watch-page h2 {
  font-size: clamp(1.8rem, 3.1vw, 2.5rem);
  line-height: 1.08;
  margin-bottom: 0;
}

.watch-page h3 {
  font-size: 1.15rem;
}

.watch-page p {
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 0;
}

.watch-hero-copy p {
  max-width: 44rem;
}

.watch-hero-copy {
  display: grid;
  gap: 1rem;
}

.watch-hero-lede {
  max-width: 44rem;
  color: rgba(255, 250, 224, 0.9);
}

.watch-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.watch-hero-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(5, 14, 28, 0.34);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.84rem;
  font-weight: 700;
}

.watch-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-decoration: none;
  color: #7fffe1;
}

.watch-back-link:hover,
.watch-back-link:focus-visible {
  text-decoration: underline;
}

.watch-stat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  justify-self: end;
  width: min(100%, 260px);
}

.watch-stat-card {
  background: rgba(5, 14, 28, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  padding: 1rem 1.1rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.watch-stat-card span {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b7d6ff;
}

.watch-stat-card strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.4rem;
  line-height: 1.15;
}

.watch-main {
  padding: 2rem 1rem 4rem;
}

.watch-page .card {
  max-width: 1180px;
  border-radius: 28px;
  box-shadow: 0 28px 60px -36px rgba(0, 0, 0, 0.72);
}

.watch-container,
.watch-grid-container {
  max-width: 1180px;
  text-align: left;
}

.watch-heading {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.watch-heading p {
  max-width: 44rem;
}

.watch-heading--builder {
  max-width: 58rem;
}

.watch-eyebrow,
.watch-side-eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9ed3ff;
}

.watch-builder-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.95fr);
  gap: 1.1rem;
  align-items: start;
}

.watch-builder-panel,
.watch-mode-panel,
.watch-side-rail,
.watch-grid-heading {
  min-width: 0;
}

.watch-builder-panel {
  display: grid;
  gap: 1rem;
}

.watch-builder-panel--primary {
  padding: 1.2rem;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(10, 24, 49, 0.72), rgba(8, 20, 40, 0.5));
  box-shadow: 0 22px 48px -28px rgba(0, 0, 0, 0.6);
}

.watch-builder-panel--secondary {
  align-self: stretch;
}

.watch-side-rail {
  display: grid;
  gap: 1rem;
}

.watch-controls-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  align-items: start;
}

.watch-room-panel {
  display: grid;
  gap: 0.9rem;
  padding: 1.15rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 19, 38, 0.7);
  box-shadow: 0 18px 42px -30px rgba(0, 0, 0, 0.7);
}

.watch-room-panel__header {
  display: grid;
  gap: 0.5rem;
}

.watch-room-panel__header h3,
.watch-room-mode {
  margin: 0;
}

.watch-room-mode {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.76);
}

.watch-room-panel--filter {
  height: 100%;
  align-content: start;
}

.watch-quick-actions {
  display: grid;
  gap: 0.65rem;
}

.watch-secondary-panel {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.watch-secondary-panel summary {
  cursor: pointer;
  padding: 0.95rem 1.05rem;
  list-style: none;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff4b0;
}

.watch-secondary-panel summary::-webkit-details-marker {
  display: none;
}

.watch-secondary-panel__body {
  display: grid;
  gap: 0.9rem;
  padding: 0 1.05rem 1.05rem;
}

.watch-secondary-panel--warning {
  border-color: rgba(255, 224, 102, 0.18);
  background: rgba(255, 224, 102, 0.04);
}

.watch-grid-heading {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1.35rem;
}

.watch-page .btn-primary,
.watch-page .btn-secondary {
  margin: 0;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 0.78rem 1.15rem;
  font-size: 0.92rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.watch-page .btn-primary {
  background: #ffd700;
  color: #1e2430;
  box-shadow: 0 14px 28px -18px rgba(255, 215, 0, 0.75);
}

.watch-page .btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff7d0;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.watch-page .btn-primary:hover,
.watch-page .btn-primary:focus-visible,
.watch-page .btn-secondary:hover,
.watch-page .btn-secondary:focus-visible {
  transform: translateY(-1px);
}

.watch-page .btn-primary:hover,
.watch-page .btn-primary:focus-visible {
  background: #ffe24d;
}

.watch-page .btn-secondary:hover,
.watch-page .btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
}

.watch-page button:disabled,
.watch-page .multiview-action-button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.watch-page .btn-primary,
.watch-page .btn-secondary,
.watch-page .multiview-open-link,
.watch-page .multiview-action-button,
.watch-page .multiview-remove-button {
  min-height: 44px;
}

.solar-main {
  padding: 3rem 1rem 4rem;
}

.solar-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.solar-canvas-card {
  background: rgba(8, 21, 44, 0.7);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.solar-canvas {
  width: 100%;
  height: 420px;
  display: block;
  border-radius: 16px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05), transparent 65%);
}

.solar-meta {
  text-align: left;
  background: rgba(8, 21, 44, 0.55);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.solar-meta h3 {
  margin-bottom: 0.75rem;
}

.solar-meta p {
  margin-bottom: 1rem;
}

.solar-legend {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.solar-legend li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
}

.solar-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
}

.solar-timestamp {
  font-size: 0.95rem;
  color: #b7d6ff;
  margin-top: 1rem;
}

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

  .solar-canvas {
    height: 360px;
  }
}

.login-link {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: rgba(255, 255, 255, 0.15);
  color: #ffe066;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
  animation-delay: 0.5s;
  z-index: 5;
}

.login-link.logged-in {
  background: rgba(255, 255, 255, 0.3);
  color: #2a2a2a;
}

.login-link:hover,
.login-link:focus {
  background: rgba(255, 255, 255, 0.3);
  color: #2a2a2a;
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .login-link {
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
  }
}

/* ===========================
   FADE-IN ANIMATION
=========================== */
.fade-in {
  opacity: 0;
  animation: fadeInAnimation 2s ease forwards;
}

@keyframes fadeInAnimation {
  to { opacity: 1; }
}

/* ===========================
   BUTTONS
=========================== */
.btn-primary,
.btn-secondary {
  display: inline-block;
  background: #FFD700;
  color: #2a2a2a;
  padding: 0.7rem 1.4rem;
  margin: 0.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-primary:visited,
.btn-secondary:visited {
  color: #2a2a2a;
}

@media (prefers-color-scheme: dark) {
  .btn-primary,
  .btn-secondary {
    color: #1f1f1f;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
  }

  .btn-primary:visited,
  .btn-secondary:visited {
    color: #1f1f1f;
  }
}

.btn-primary:hover,
.btn-secondary:hover {
  background: #fff9c4;
  transform: scale(1.05);
}

.hero-personal-note {
  margin: 1rem auto 0.25rem;
  max-width: 34rem;
  color: #fff9c4;
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.38);
}

/* ===========================
   SECTIONS & CARDS
=========================== */
.section {
  padding: 5rem 2rem;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  margin: 2rem auto;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
  max-width: 900px;
}

/* ===========================
   OPEN SOURCE CONTRIBUTIONS
=========================== */
.opensource-page {
  background:
    radial-gradient(circle at 12% 8%, rgba(45, 123, 190, 0.34), transparent 28rem),
    linear-gradient(180deg, #102d4d 0%, #081a2e 100%);
  color: #f4f8fc;
}

.opensource-page h1,
.opensource-page h2,
.opensource-page h3,
.opensource-page p {
  text-shadow: none;
}

.opensource-page .hero {
  padding-block: 5rem 3rem;
}

.opensource-page .hero .container {
  max-width: 760px;
}

.opensource-page .hero h1 {
  color: #ffe066;
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 0.95;
}

.opensource-page .tagline {
  color: #d9e8f5;
}

.opensource-page .section.card {
  max-width: 1080px;
  padding: 0;
  border: 1px solid rgba(149, 205, 238, 0.18);
  background: rgba(11, 35, 60, 0.88);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.opensource-page .section > .container {
  max-width: none;
  padding: clamp(2rem, 5vw, 4rem);
}

.opensource-page .section h2 {
  max-width: 720px;
  margin-inline: auto;
  color: #ffe066;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

.opensource-page .section > .container > p:not(.contribution-eyebrow):not(.contribution-note),
.opensource-page .section > .container > ul {
  max-width: 760px;
  margin-inline: auto;
}

.opensource-page .section > .container > p,
.opensource-page .section > .container > li {
  color: #e2edf6;
  line-height: 1.7;
}

.opensource-page .section > .container > ul {
  padding-left: 1.4rem;
  text-align: left;
}

.opensource-page .section > .container > ul li + li {
  margin-top: 0.55rem;
}

.contribution-eyebrow,
.contribution-project {
  margin-bottom: 0.45rem;
  color: #7fffe1;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contribution-card {
  min-width: 0;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid rgba(127, 255, 225, 0.28);
  border-radius: 16px;
  background: #0c2947;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  text-align: left;
}

.contribution-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.contribution-intro {
  margin-bottom: 0;
  color: #c9dceb !important;
  font-size: 1.08rem;
}

.contribution-heading {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.contribution-heading h3 {
  color: #ffe066;
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  line-height: 1.18;
}

.contribution-status {
  flex: 0 0 auto;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(127, 255, 225, 0.16);
  color: #7fffe1;
  font-size: 0.85rem;
  font-weight: 700;
}

.contribution-card p,
.contribution-card li {
  color: #eef6fb;
  font-size: 1.05rem;
  line-height: 1.68;
}

.contribution-card code {
  padding: 0.12rem 0.35rem;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.25);
  color: #fff4b3;
}

.contribution-details {
  display: grid;
  gap: 0.55rem;
  margin: 0 0 1.25rem 1.25rem;
}

.contribution-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.contribution-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(127, 255, 225, 0.34);
  border-radius: 10px;
  background: rgba(127, 255, 225, 0.08);
  line-height: 1.35;
  text-decoration: none;
}

.contribution-note {
  max-width: 680px;
  margin: 1.25rem auto 0;
  font-size: 0.95rem;
}

@media (max-width: 600px) {
  .opensource-page .hero {
    padding: 3rem 0.75rem 2rem;
  }

  .opensource-page .hero .container {
    padding: 1rem;
  }

  .opensource-page .hero h1 {
    font-size: 3.25rem;
  }

  .opensource-page .section.card {
    width: calc(100% - 1rem);
    margin-block: 1rem;
    border-radius: 14px;
  }

  .opensource-page .section > .container {
    padding: 1.5rem 1.1rem;
  }

  .opensource-page .section h2 {
    font-size: 2rem;
  }

  .opensource-page .section > .container > p {
    font-size: 1.05rem;
  }

  .contribution-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.35rem;
  }

  .contribution-card {
    padding: 1.25rem;
  }

  .contribution-heading {
    display: grid;
  }

  .contribution-status {
    justify-self: start;
  }

  .contribution-card p,
  .contribution-card li {
    font-size: 1rem;
  }

  .contribution-details {
    margin-left: 1rem;
  }

  .contribution-links {
    display: grid;
  }
}

/* ===========================
   CHAKRA VISUALS
=========================== */
.chakra-grid {
  display: grid;
  gap: 1.5rem;
  margin-block: 1.5rem 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.chakra-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 18px 40px -24px rgba(11, 29, 57, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.chakra-card:hover,
.chakra-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px -22px rgba(11, 29, 57, 0.75);
}

.chakra-card h3,
.chakra-step h3 {
  margin-bottom: 0.5rem;
}

.chakra-icon {
  width: 64px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  box-shadow: 0 16px 32px -18px rgba(0, 0, 0, 0.55);
  clip-path: polygon(50% 0%, 72% 12%, 92% 28%, 82% 50%, 92% 72%, 72% 88%, 50% 100%, 28% 88%, 8% 72%, 18% 50%, 8% 28%, 28% 12%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  position: relative;
  isolation: isolate;
}

.chakra-icon::after {
  content: "";
  position: absolute;
  inset: 14%;
  border-radius: 18%;
  background: rgba(255, 255, 255, 0.12);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: -1;
}

.chakra-card .chakra-icon {
  margin-bottom: 0.75rem;
}

.chakra-step .chakra-icon {
  margin-bottom: 0;
}

.chakra-summary {
  margin-top: 1rem;
  font-style: italic;
}

.chakra-path {
  display: grid;
  gap: 1.5rem;
  margin-block: 1.75rem 2rem;
}

.chakra-step {
  background: rgba(11, 29, 57, 0.35);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease;
  text-align: left;
}

.chakra-step h3 {
  font-size: 1.1rem;
}

.chakra-card p,
.chakra-step p {
  font-size: 1.05rem;
  line-height: 1.6;
}

.chakra-root {
  background: linear-gradient(135deg, #d92027, #ff7b54);
}

.chakra-sacral {
  background: linear-gradient(135deg, #ff8a5c, #ffdd67);
}

.chakra-solar {
  background: linear-gradient(135deg, #f8b500, #fce38a);
  color: #4a2a00;
}

.chakra-heart {
  background: linear-gradient(135deg, #3dd598, #57c5b6);
}

.chakra-throat {
  background: linear-gradient(135deg, #1ca7ec, #73d2f6);
}

.chakra-third-eye {
  background: linear-gradient(135deg, #7b4397, #9f5afd);
}

.chakra-crown {
  background: linear-gradient(135deg, #d16ba5, #c777b9, #ba83ca);
}

/* ===========================
   PROJECT GRID
=========================== */
.explore-search {
  display: grid;
  gap: 0.65rem;
  justify-items: center;
  margin-top: 1.2rem;
}

.explore-search-input {
  width: min(560px, 100%);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  color: #ffe066;
  font-size: 1rem;
  padding: 0.75rem 1.05rem;
  box-shadow: 0 10px 26px -20px rgba(0, 0, 0, 0.45);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.explore-search-input::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.explore-search-input:focus-visible {
  outline: none;
  border-color: rgba(255, 224, 102, 0.75);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 0 3px rgba(255, 224, 102, 0.25);
}

.explore-search.is-highlighted .explore-search-input {
  border-color: rgba(255, 224, 102, 0.9);
  background: rgba(255, 255, 255, 0.2);
  box-shadow:
    0 0 0 4px rgba(255, 224, 102, 0.28),
    0 18px 34px -22px rgba(0, 0, 0, 0.55);
  animation: app-search-highlight 1200ms ease-out;
}

@keyframes app-search-highlight {
  0% {
    transform: scale(1);
  }

  35% {
    transform: scale(1.025);
  }

  100% {
    transform: scale(1);
  }
}

.explore-search-status {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.86);
}

.project-grid {
  --project-card-width: clamp(200px, 28vw, 240px);
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
  justify-content: center;
}

.project-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 1.1rem 1rem;
  border-radius: 12px;
  text-decoration: none;
  color: #ffd700;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
  text-align: center;
  flex: 0 0 var(--project-card-width);
  width: var(--project-card-width);
  max-width: 240px;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.project-card[hidden] {
  display: none !important;
}

.explore-search-empty {
  margin-top: 1rem;
  margin-bottom: 0;
  font-size: 1rem;
  color: #fff1b8;
}

/* ===========================
   YOUTUBE VIDEO WATCHER
=========================== */
.multiview-label {
  display: inline-block;
  margin-bottom: 0.7rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff4b0;
}

.video-search-panel {
  display: grid;
  gap: 1rem;
  padding: 1.15rem 1.15rem 1.25rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at top right, rgba(255, 224, 102, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.05);
}

.video-search-header {
  display: grid;
  gap: 0.45rem;
}

.video-search-copy {
  margin: 0;
  max-width: 36rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

.video-search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
}

.video-search-input {
  min-width: 0;
}

.video-search-status {
  margin: 0;
  min-height: 1.3rem;
  font-size: 0.88rem;
  color: #7fffe1;
}

.video-search-status[data-tone="error"] {
  color: #ff8a8a;
}

.video-search-status[data-tone="warning"] {
  color: #ffd27f;
}

.video-search-status[data-tone="success"] {
  color: #91ffa5;
}

.video-search-results {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.video-search-card {
  display: grid;
  gap: 0.75rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(5, 14, 28, 0.72);
  box-shadow: 0 18px 38px -28px rgba(0, 0, 0, 0.7);
  overflow: hidden;
}

.video-search-card__thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.06);
}

.video-search-card__body {
  display: grid;
  gap: 0.65rem;
  padding: 0 0.9rem 0.9rem;
}

.video-search-card__title {
  margin: 0;
  font-size: 1rem;
  line-height: 1.3;
}

.video-search-card__meta {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.76);
}

.video-search-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}

.video-search-empty {
  margin: 0;
  padding: 1rem 1.05rem;
  border-radius: 16px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
  line-height: 1.5;
}

.multiview-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
}

.multiview-input {
  width: 100%;
  min-width: 220px;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(3, 10, 20, 0.7);
  color: #ffe066;
  font-size: 1rem;
  font-family: inherit;
}

.multiview-textarea {
  min-height: 8rem;
  resize: vertical;
}

.multiview-input::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.multiview-hint {
  font-size: 0.88rem;
  opacity: 0.82;
  margin: 0;
}

.multiview-search-controls {
  display: grid;
  gap: 0.65rem;
}

.multiview-search-input {
  width: 100%;
  min-width: 200px;
  padding: 0.8rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #ffe066;
  font-size: 0.95rem;
  font-family: inherit;
}

.multiview-search-input::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.multiview-search-hint {
  font-size: 0.85rem;
  opacity: 0.8;
  margin: 0;
}

.multiview-player-option--advanced {
  margin-top: 0;
}

.watch-advanced-settings__note {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.74);
}

.multiview-player-toggle {
  margin: 0;
  padding: 1.05rem 1.15rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(11, 29, 57, 0.72);
  display: grid;
  gap: 1rem;
  align-items: start;
  box-shadow: 0 18px 42px -30px rgba(0, 0, 0, 0.7);
}

.multiview-player-copy {
  min-width: 0;
}

.multiview-player-copy p {
  margin: 0;
}

.multiview-player-help {
  font-size: 0.92rem;
  opacity: 0.88;
  margin-top: 0.45rem;
  line-height: 1.55;
}

.multiview-player-options {
  display: grid;
  gap: 0.65rem;
}

.multiview-player-option {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.8rem 0.95rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.04);
  transition: border 0.2s ease, background 0.2s ease;
  font-size: 0.9rem;
}

.multiview-player-option input {
  accent-color: #ffe066;
}

.multiview-player-option span {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.multiview-player-option strong {
  font-size: 0.95rem;
}

.multiview-player-option small {
  font-size: 0.75rem;
  opacity: 0.85;
}

.multiview-player-option:has(input:checked) {
  border-color: #ffe066;
  background: rgba(255, 224, 102, 0.18);
  color: #fffef0;
}

.multiview-statusbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  align-items: center;
  margin-top: 1.5rem;
  padding: 1rem 1.15rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(9, 24, 46, 0.58);
}

.multiview-status {
  min-height: 1.5rem;
  font-size: 0.95rem;
  margin: 0;
  color: #7fffe1;
}

.multiview-state-summary {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.84);
}

.multiview-diagnostics-copy {
  min-width: 0;
}

.multiview-diagnostics-copy p {
  margin: 0 0 0.35rem;
  line-height: 1.6;
}

.multiview-diagnostics-note {
  font-size: 0.85rem;
  opacity: 0.85;
}

.multiview-diagnostics-actions {
  display: grid;
  gap: 0.75rem;
}

.multiview-diagnostics-results {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.multiview-diagnostics-results li {
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.85);
}

.multiview-diagnostics-results li[data-tone="success"] {
  color: #8ef7c1;
}

.multiview-diagnostics-results li[data-tone="warning"] {
  color: #ffd27f;
}

.multiview-diagnostics-results li[data-tone="error"] {
  color: #ff9e9e;
}

.multiview-status[data-tone="error"] {
  color: #ff8a8a;
}

.multiview-status[data-tone="success"] {
  color: #91ffa5;
}

.multiview-status[data-tone="warning"] {
  color: #ffd27f;
}

.multiview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1rem;
}

.multiview-frame-wrapper {
  position: relative;
  display: grid;
  gap: 0.9rem;
  padding: 0.85rem;
  border-radius: 22px;
  background: rgba(8, 21, 44, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.multiview-media-shell {
  padding: 0.1rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 224, 102, 0.14), rgba(127, 255, 225, 0.16));
}

.multiview-player-mount {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.multiview-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  background: #0b1d39;
  overflow: hidden;
}

.multiview-meta {
  display: grid;
  gap: 0.75rem;
}

.multiview-frame-tag {
  margin: 0;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #7fffe1;
}

.multiview-frame-title {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.2;
}

.multiview-frame-id {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.78);
  word-break: break-all;
}

.multiview-frame-controls {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.multiview-volume {
  display: grid;
  grid-template-columns: auto minmax(140px, 1fr) auto;
  align-items: center;
  gap: 0.65rem;
  flex: 1 1 100%;
  padding: 0.8rem 0.9rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.multiview-volume span,
.multiview-volume strong {
  font-size: 0.92rem;
}

.multiview-volume input[type="range"] {
  width: 100%;
  accent-color: #ffe066;
}

.multiview-action-button,
.multiview-remove-button,
.multiview-open-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.45rem 0.95rem;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.multiview-action-button {
  border: 1px solid rgba(127, 255, 225, 0.32);
  color: #d7fff7;
  background: rgba(127, 255, 225, 0.08);
  cursor: pointer;
}

.multiview-action-button:hover,
.multiview-action-button:focus-visible,
.multiview-remove-button:hover,
.multiview-remove-button:focus-visible,
.multiview-open-link:hover,
.multiview-open-link:focus-visible {
  transform: translateY(-1px);
}

.multiview-open-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.multiview-remove-button {
  border: 1px solid rgba(255, 158, 158, 0.9);
  color: #ff9e9e;
  background: transparent;
  cursor: pointer;
}

.multiview-remove-button:hover,
.multiview-remove-button:focus-visible {
  background: rgba(255, 158, 158, 0.15);
  color: #ffe6e6;
}

.multiview-frame-note,
.multiview-frame-error,
.multiview-empty {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.4;
}

.multiview-frame-note,
.multiview-empty {
  color: rgba(255, 255, 255, 0.78);
}

.multiview-frame-error {
  color: #ff9e9e;
}

.multiview-empty {
  padding: 3rem 1.5rem;
  border-radius: 22px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}

@media (max-width: 900px) {
  .watch-hero-grid,
  .watch-builder-grid {
    grid-template-columns: 1fr;
  }

  .watch-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-self: start;
    width: 100%;
  }

  .watch-quick-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .watch-controls-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .watch-main {
    padding: 1.4rem 0.55rem 3rem;
  }

  .watch-page .card {
    border-radius: 24px;
  }

  .watch-container,
  .watch-grid-container {
    padding: 1rem;
  }

  .watch-back-link {
    flex-wrap: wrap;
    line-height: 1.35;
  }

  .watch-page h2 {
    font-size: 1.7rem;
  }

  .watch-page h3 {
    font-size: 1.05rem;
  }

  .watch-heading,
  .watch-grid-heading,
  .watch-room-panel__header,
  .video-search-header {
    gap: 0.4rem;
  }

  .watch-heading {
    margin-bottom: 1.1rem;
  }

  .watch-builder-grid,
  .watch-controls-grid,
  .video-search-panel {
    gap: 0.85rem;
  }

  .watch-stat-grid,
  .video-search-form,
  .watch-quick-actions,
  .video-search-results {
    grid-template-columns: 1fr;
  }

  .watch-secondary-panel summary {
    padding: 0.85rem 0.95rem;
  }

  .watch-secondary-panel__body {
    gap: 0.8rem;
    padding: 0 0.95rem 0.95rem;
  }
}

@media (max-width: 640px) {
  .watch-hero {
    padding: 2.5rem 1rem 2.1rem;
  }

  .watch-main {
    padding: 1.1rem 0.3rem 2.5rem;
  }

  .watch-container,
  .watch-grid-container {
    padding: 1.1rem;
  }

  .watch-page h1 {
    font-size: 2.45rem;
  }

  .watch-page h2 {
    font-size: 1.55rem;
  }

  .watch-page h3 {
    font-size: 1rem;
  }

  .watch-page p {
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .watch-stat-grid {
    grid-template-columns: 1fr;
  }

  .watch-hero-pills {
    gap: 0.5rem;
  }

  .watch-hero-pill {
    width: 100%;
    justify-content: center;
  }

  .video-search-form,
  .multiview-controls,
  .watch-quick-actions {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .watch-builder-panel--primary,
  .multiview-player-toggle,
  .watch-room-panel,
  .watch-secondary-panel {
    padding: 1rem;
    border-radius: 22px;
  }

  .video-search-card__actions,
  .multiview-frame-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .multiview-frame-controls {
    display: grid;
    grid-template-columns: 1fr;
  }

  .multiview-frame-controls > * {
    width: 100%;
    max-width: 100%;
  }

  .watch-page .btn-primary,
  .watch-page .btn-secondary,
  .watch-page .multiview-open-link,
  .watch-page .multiview-action-button,
  .watch-page .multiview-remove-button {
    width: 100%;
  }

  .multiview-volume {
    gap: 0.5rem;
    padding: 0.75rem 0.8rem;
  }

  .multiview-action-button,
  .multiview-remove-button,
  .multiview-open-link {
    justify-content: center;
    text-align: center;
  }

  .multiview-grid {
    grid-template-columns: 1fr;
  }

  .multiview-volume {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   COMMAND CENTRAL LINKS
=========================== */
.quick-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2rem;
}

.quick-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.1rem;
  border-radius: 12px;
  background: rgba(127, 255, 225, 0.12);
  color: #ffe066;
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.3s ease, background 0.3s ease, border 0.3s ease;
  flex: 0 1 190px;
  min-height: 58px;
  text-align: center;
}

.quick-link:hover {
  background: rgba(127, 255, 225, 0.25);
  border-color: rgba(127, 255, 225, 0.5);
  transform: translateY(-4px);
}

/* ===========================
   CYCLE & MOON TRACKER
=========================== */
.section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.section-header p {
  margin-bottom: 0;
  max-width: 720px;
}

.tracker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.tracker-form {
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(11, 29, 57, 0.9), rgba(11, 29, 57, 0.7));
  box-shadow: 0 18px 40px -24px rgba(0, 0, 0, 0.55);
}

.tracker-form h3,
.tracker-results h3,
.moon-calendar h3 {
  margin-bottom: 0.5rem;
}

.tracker-form label {
  display: block;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0.5rem 0 0.3rem;
}

.tracker-form input,
.tracker-form select,
.tracker-form textarea,
.moon-year input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: #ffe066;
  font-weight: 600;
  box-shadow: inset 0 0 0 1px rgba(127, 255, 225, 0.05);
}

.tracker-form input:focus,
.tracker-form select:focus,
.tracker-form textarea:focus,
.moon-year input:focus {
  outline: 2px solid rgba(127, 255, 225, 0.35);
  border-color: rgba(127, 255, 225, 0.65);
  box-shadow: 0 0 0 3px rgba(127, 255, 225, 0.15);
}

.tracker-note {
  margin-top: 1rem;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.86);
}

.tracker-results {
  padding: 1.25rem 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(145deg, rgba(127, 255, 225, 0.07), rgba(255, 224, 102, 0.08));
  box-shadow: 0 18px 44px -28px rgba(0, 0, 0, 0.55);
  min-height: 100%;
}

.tracker-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.tracker-filter label {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.tracker-filter select {
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(11, 29, 57, 0.6);
  color: #ffe066;
  font-weight: 600;
  box-shadow: inset 0 0 0 1px rgba(127, 255, 225, 0.08);
}

.shopping-sync-panel {
  display: grid;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.9rem;
  border-radius: 14px;
  border: 1px solid rgba(127, 255, 225, 0.16);
  background: rgba(11, 29, 57, 0.32);
  text-align: left;
}

.shopping-sync-panel label {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.shopping-sync-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.6rem;
  align-items: center;
}

.shopping-sync-row input {
  min-width: 0;
  width: 100%;
  padding: 0.6rem 0.75rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: #ffe066;
  font-weight: 600;
}

.shopping-sync-panel .tracker-note {
  min-height: 1.2em;
  margin: 0;
}

@media (max-width: 560px) {
  .shopping-sync-row {
    grid-template-columns: 1fr;
  }
}

.cycle-results {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cycle-card {
  padding: 1rem 1.25rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 16px 36px -24px rgba(0, 0, 0, 0.65);
}

.cycle-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.cycle-card__details {
  list-style: none;
  margin: 0.65rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.meal-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.meal-card {
  padding: 1rem 1.25rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(11, 29, 57, 0.4);
  box-shadow: 0 16px 36px -24px rgba(0, 0, 0, 0.65);
}

.meal-card--today {
  border-color: rgba(127, 255, 225, 0.6);
  background: rgba(15, 55, 90, 0.6);
  box-shadow: 0 18px 40px -22px rgba(0, 0, 0, 0.7);
}

.meal-card--today .meal-date {
  border-color: rgba(127, 255, 225, 0.65);
  background: rgba(127, 255, 225, 0.18);
  color: rgba(240, 255, 251, 0.95);
}

.shopping-item--purchased {
  background: rgba(11, 29, 57, 0.25);
  border-color: rgba(255, 255, 255, 0.05);
  opacity: 0.75;
}

.shopping-item--purchased h4 {
  text-decoration: line-through;
}

.meal-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.meal-card h4 {
  margin: 0;
  font-size: 1.05rem;
}

.meal-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.85rem;
}

.meal-action-btn {
  border-radius: 999px;
  border: 1px solid rgba(255, 145, 145, 0.5);
  background: rgba(255, 145, 145, 0.12);
  color: #ffe3e3;
  padding: 0.35rem 0.95rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.meal-action-btn:hover,
.meal-action-btn:focus-visible {
  background: rgba(255, 145, 145, 0.24);
  box-shadow: 0 10px 18px -16px rgba(255, 145, 145, 0.8);
  transform: translateY(-1px);
}

.meal-action-btn--edit {
  border-color: rgba(132, 214, 255, 0.55);
  background: rgba(132, 214, 255, 0.16);
  color: #ddf3ff;
}

.meal-action-btn--edit:hover,
.meal-action-btn--edit:focus-visible {
  background: rgba(132, 214, 255, 0.3);
  box-shadow: 0 10px 18px -16px rgba(132, 214, 255, 0.8);
}

.meal-action-btn--danger {
  border-color: rgba(255, 120, 120, 0.6);
  background: rgba(255, 120, 120, 0.14);
  color: #ffd7d7;
}

.meal-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.86);
}

.meal-tag,
.meal-date {
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.shopping-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.85rem;
}

.shopping-action-btn {
  border-radius: 999px;
  border: 1px solid rgba(127, 255, 225, 0.5);
  background: rgba(127, 255, 225, 0.12);
  color: #e9fef9;
  padding: 0.35rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.shopping-action-btn:hover,
.shopping-action-btn:focus-visible {
  background: rgba(127, 255, 225, 0.22);
  box-shadow: 0 10px 18px -16px rgba(127, 255, 225, 0.8);
  transform: translateY(-1px);
}

.shopping-action-btn--ghost {
  border-color: rgba(255, 224, 102, 0.5);
  background: rgba(255, 224, 102, 0.12);
  color: #fff1b8;
}

.shopping-action-btn--ghost:hover,
.shopping-action-btn--ghost:focus-visible {
  background: rgba(255, 224, 102, 0.22);
  box-shadow: 0 10px 18px -16px rgba(255, 224, 102, 0.8);
}

.journal-status {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  text-align: left;
}

.journal-status-panel,
.journal-auth-form {
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(11, 29, 57, 0.9), rgba(11, 29, 57, 0.7));
  box-shadow: 0 18px 40px -26px rgba(0, 0, 0, 0.55);
}

.journal-mode-actions,
.journal-auth-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1rem 0 0.5rem;
}

.journal-auth-form label {
  display: block;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0.6rem 0 0.3rem;
}

.journal-auth-form input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: #ffe066;
  font-weight: 600;
  box-shadow: inset 0 0 0 1px rgba(127, 255, 225, 0.05);
}

.journal-auth-form.is-hidden {
  display: none;
}

.journal-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin: 1rem 0;
}

.journal-filter label {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.journal-filter select,
.journal-filter input {
  padding: 0.55rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(11, 29, 57, 0.6);
  color: #ffe066;
  font-weight: 600;
  box-shadow: inset 0 0 0 1px rgba(127, 255, 225, 0.08);
}

.journal-entry {
  text-align: left;
}

.journal-entry--idea {
  border-color: rgba(132, 214, 255, 0.6);
}

.journal-entry--project {
  border-color: rgba(255, 224, 102, 0.7);
}

.journal-body {
  margin: 0.75rem 0 0;
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  white-space: pre-wrap;
}

.journal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.7rem;
}

.journal-tag {
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(127, 255, 225, 0.4);
  background: rgba(127, 255, 225, 0.12);
  color: #e9fef9;
  font-size: 0.85rem;
  font-weight: 600;
}

.journal-next {
  margin-top: 0.75rem;
  padding: 0.6rem 0.75rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.95rem;
}

.moon-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  background: rgba(127, 255, 225, 0.16);
  border: 1px solid rgba(127, 255, 225, 0.45);
  color: #7fffe1;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-shadow: none;
}

.moon-chip::before {
  content: '☾';
  font-size: 1rem;
}

.muted {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  text-shadow: none;
}

.moon-calendar {
  margin-top: 1.5rem;
  padding: 1.35rem 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(11, 29, 57, 0.86), rgba(11, 29, 57, 0.68));
  box-shadow: 0 18px 40px -26px rgba(0, 0, 0, 0.6);
}

.moon-calendar-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.moon-year {
  min-width: 180px;
}

.moon-year label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.moon-calendar-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.moon-card {
  border-radius: 14px;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 16px 36px -26px rgba(0, 0, 0, 0.55);
}

.moon-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.moon-dots {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.moon-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7fffe1, #ffe066);
  box-shadow: 0 0 12px rgba(127, 255, 225, 0.65);
}

.moon-card p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* ===========================
   FOOTER
=========================== */
footer {
  text-align: center;
  padding: 2rem;
  opacity: 0.8;
  font-size: 1rem;
}

.section.card p.contact-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  flex-wrap: nowrap;
  font-size: clamp(0.95rem, 1.7vw, 1.2rem);
  max-width: 100%;
}

.section.card p.contact-line .contact-label {
  flex: 0 1 auto;
  white-space: nowrap;
}

.section.card p.contact-line .contact-link {
  flex: 0 1 auto;
  min-width: 0;
  white-space: nowrap;
}

/* ===========================
   MOBILE FIXES
=========================== */
@media (max-width: 640px) {
  .container {
    margin-inline: auto;
    padding: 1.25rem;
    text-align: center;
  }

  .card {
    margin: 1rem auto;
    width: calc(100% - 2rem);
    max-width: 900px;
  }

  /* Explore More: force a single centered column */
  .project-grid {
    --project-card-width: min(100%, 420px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .explore-search {
    margin-top: 1rem;
  }

  .explore-search-input {
    width: 100%;
  }

  .project-card {
    width: var(--project-card-width);
    max-width: none;
    margin-inline: auto;
    flex: 0 0 var(--project-card-width);
  }

  .quick-links {
    gap: 1rem;
  }

  .quick-link {
    flex-basis: 160px;
    padding: 0.85rem 1rem;
    min-height: 52px;
  }

  /* Ensure text stays centered */
  h1, h2, p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  /* Center email & WhatsApp links */
  .section.card .container,
  footer .container {
    display: grid;
    place-items: center;
  }

  .section.card p a {
    display: inline-block;
    word-break: break-word;
  }

  .section.card p.contact-line {
    font-size: clamp(0.85rem, 3.4vw, 1.1rem);
  }

  .tracker-grid {
    grid-template-columns: 1fr;
  }

  .cycle-card__header {
    align-items: flex-start;
  }

  .moon-calendar-header {
    align-items: flex-start;
  }

  .moon-calendar-grid {
    grid-template-columns: 1fr;
  }

  .section.card p a.contact-link {
    font-size: inherit;
    word-break: normal;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Adjust hero padding for small screens */
  .hero {
    padding: 6rem 1rem 3.5rem 1rem;
  }

  .chakra-grid {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .chakra-card {
    padding: 1.35rem 1.2rem;
    max-width: 420px;
    margin-inline: auto;
    align-items: flex-start;
    text-align: left;
  }

  .chakra-card h3 {
    font-size: 1.2rem;
  }

  .chakra-step {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    gap: 1rem;
  }

  .chakra-step .chakra-icon {
    margin-bottom: 0.75rem;
    align-self: flex-start;
  }

  .chakra-card h3,
  .chakra-card p,
  .chakra-step h3,
  .chakra-step p {
    text-align: left;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2.3rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  p {
    font-size: 1.05rem;
  }

  .chakra-card,
  .chakra-step {
    padding: 1.1rem 1rem;
  }

  .chakra-icon {
    width: 54px;
    font-size: 1rem;
  }
}

@supports not (clip-path: polygon(50% 0%, 72% 12%, 92% 28%, 82% 50%, 92% 72%, 72% 88%, 50% 100%, 28% 88%, 8% 72%, 18% 50%, 8% 28%, 28% 12%)) {
  .chakra-icon {
    border-radius: 22%;
  }
}

/* Journal & Content Lab */
.journal-intro-grid,
.prompt-grid,
.board-grid,
.creation-grid,
.checklist-grid,
.template-grid {
  display: grid;
  gap: 1.2rem;
}

.journal-intro-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.journal-intro-grid .card {
  height: 100%;
}

.prompt-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.prompt-card,
.checklist-card,
.template-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  height: 100%;
}

.prompt-list {
  margin: 0.6rem 0 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.4rem;
  line-height: 1.5;
}

.board-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.board-column {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 1.1rem 1.2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.board-column-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}

.board-list {
  padding-left: 1.1rem;
  margin: 0;
  display: grid;
  gap: 0.55rem;
}

.status-pill {
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.85rem;
  color: #d7e8ff;
  white-space: nowrap;
}

.status-in-progress {
  background: rgba(76, 165, 255, 0.15);
  color: #a9d4ff;
  border-color: rgba(76, 165, 255, 0.3);
}

.status-review {
  background: rgba(255, 208, 70, 0.16);
  color: #ffe9b0;
  border-color: rgba(255, 208, 70, 0.35);
}

.status-ready {
  background: rgba(120, 255, 168, 0.14);
  color: #d0ffd0;
  border-color: rgba(120, 255, 168, 0.35);
}

.creation-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.creation-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: center;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.step-number {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #4ca0ff, #8fddff);
  color: #0b1d39;
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 6px 16px rgba(79, 172, 255, 0.35);
}

.checklist-grid,
.template-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.template-card {
  text-align: left;
}

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

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* ===========================
   MONEY RE-PERMISSIONING PAGE
=========================== */
.money-page {
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.06), transparent 60%), #0b1d39;
  color: #f5f1d4;
  line-height: 1.7;
}

.money-page .container {
  text-align: left;
  max-width: 880px;
}

.money-hero {
  padding: 5rem 2rem 2rem;
}

.money-back-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  color: #7fffe1;
}

.money-back-link:hover,
.money-back-link:focus-visible {
  text-decoration: underline;
}

.money-subtitle {
  font-size: 1.1rem;
  color: #c7d2ee;
  margin-bottom: 1.5rem;
}

.money-intro {
  font-size: 1.05rem;
  color: #f5f1d4;
}

.money-note {
  background: rgba(255, 255, 255, 0.08);
  border-left: 3px solid rgba(255, 224, 102, 0.7);
  padding: 0.75rem 1rem;
  border-radius: 10px;
}

.money-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1rem 0 2rem;
}

.money-toc {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
}

.money-toc h2 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  text-shadow: none;
}

.money-toc ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.money-toc li + li {
  margin-top: 0.4rem;
}

.money-main {
  padding: 1rem 0 3rem;
}

.money-section {
  padding: 2.5rem 2rem;
  margin: 1.5rem auto;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  box-shadow: 0 18px 45px -28px rgba(11, 29, 57, 0.8);
}

.money-section h2 {
  text-shadow: none;
  font-size: 1.6rem;
}

.money-section p,
.money-section li {
  font-size: 1.05rem;
  color: #f7f2d6;
  text-shadow: none;
}

.money-section ul {
  margin: 0 0 1.5rem 1.2rem;
}

.money-section-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.money-script {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.money-textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.3);
  color: #fefae0;
  padding: 1rem;
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  margin-top: 1rem;
}

.money-textarea:focus {
  outline: 2px solid rgba(255, 224, 102, 0.7);
  outline-offset: 2px;
}

.money-footer {
  padding: 2rem 0 3rem;
  text-align: center;
}

.money-footer p {
  margin-bottom: 0.75rem;
  text-shadow: none;
}

@media (max-width: 700px) {
  .money-hero,
  .money-section {
    padding: 2rem 1.5rem;
  }

  .money-section-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
.recipe-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.recipe-time-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 0.75rem;
}

.recipe-time-grid label {
  display: block;
}

.recipe-card {
  padding: 1rem;
}

.recipe-card p {
  white-space: pre-wrap;
}

.recipe-details {
  margin: 0.5rem 0 1rem;
  padding-left: 1.4rem;
}

.recipe-actions a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

/* ===========================
   YOUTUBE WATCHER UX REFRESH
=========================== */
.watch-room-card {
  border: 1px solid rgba(127, 255, 225, 0.14);
  background:
    radial-gradient(circle at top right, rgba(127, 255, 225, 0.07), transparent 34%),
    rgba(8, 21, 44, 0.78);
}

.watch-grid-heading--room {
  margin-bottom: 1rem;
}

.watch-room-intro {
  max-width: 46rem;
  margin-top: 0.55rem !important;
  color: rgba(255, 255, 255, 0.78);
}

.watch-room-toolbar {
  position: sticky;
  top: 0.75rem;
  z-index: 8;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  gap: 0.9rem;
  align-items: end;
  margin-bottom: 0.8rem;
  padding: 0.9rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(5, 14, 28, 0.88);
  box-shadow: 0 16px 34px -24px rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.watch-room-filter .multiview-label {
  margin-bottom: 0;
}

.watch-room-toolbar__actions {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.watch-room-toolbar__actions .btn-primary,
.watch-room-toolbar__actions .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  text-decoration: none;
}

.watch-room-status {
  margin: 0 0 0.9rem;
  padding: 0 0.2rem;
}

.watch-builder-panel--single {
  width: min(100%, 920px);
  margin: 0 auto;
}

.multiview-frame-wrapper {
  scroll-margin-top: 6.5rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.multiview-frame-id {
  font-size: 0.76rem;
  opacity: 0.58;
}

.multiview-frame-controls {
  display: grid;
  gap: 0.65rem;
}

.multiview-frame-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.multiview-frame-actions > * {
  flex: 1 1 110px;
}

.multiview-focus-button[aria-pressed="true"] {
  border-color: rgba(255, 224, 102, 0.82);
  background: rgba(255, 224, 102, 0.16);
  color: #fff4b0;
}

.multiview-grid--focused {
  grid-template-columns: minmax(0, 1fr);
}

.multiview-grid--focused .multiview-frame-wrapper:not(.is-focused) {
  display: none;
}

.multiview-grid--focused .multiview-frame-wrapper.is-focused {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  border-color: rgba(127, 255, 225, 0.3);
  box-shadow: 0 28px 60px -28px rgba(0, 0, 0, 0.86);
}

@media (max-width: 780px) {
  .watch-room-toolbar {
    position: static;
    grid-template-columns: 1fr;
  }

  .watch-room-toolbar__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .watch-hero {
    padding: 1.55rem 0.9rem 1.4rem;
  }

  .watch-hero-grid {
    gap: 1rem;
  }

  .watch-hero-copy {
    gap: 0.7rem;
  }

  .watch-hero-pills {
    display: none;
  }

  .watch-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .watch-stat-card {
    padding: 0.75rem 0.8rem;
    border-radius: 16px;
  }

  .watch-stat-card span {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .watch-stat-card strong {
    font-size: 1.05rem;
  }

  .watch-room-intro {
    font-size: 0.88rem !important;
  }

  .watch-room-toolbar {
    gap: 0.7rem;
    padding: 0.75rem;
    border-radius: 16px;
  }

  .watch-room-toolbar__actions {
    gap: 0.5rem;
  }

  .multiview-frame-wrapper {
    gap: 0.65rem;
    padding: 0.65rem;
    border-radius: 18px;
    scroll-margin-top: 1rem;
  }

  .multiview-media-shell {
    border-radius: 15px;
  }

  .multiview-frame {
    border-radius: 14px;
  }

  .multiview-meta {
    gap: 0.55rem;
  }

  .multiview-frame-id {
    display: none;
  }

  .multiview-volume {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 0.45rem;
    padding: 0.65rem 0.7rem;
  }

  .multiview-volume span,
  .multiview-volume strong {
    font-size: 0.8rem;
  }

  .multiview-frame-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .multiview-frame-actions > * {
    min-width: 0;
  }

  .multiview-frame-actions .multiview-action-button,
  .multiview-frame-actions .multiview-remove-button,
  .multiview-frame-actions .multiview-open-link {
    width: 100%;
    padding-inline: 0.65rem;
  }
}

@media (max-width: 640px) {
  .watch-hero-lede,
  .watch-room-intro {
    display: none;
  }

  .watch-grid-heading--room {
    margin-bottom: 0.7rem;
  }

  .watch-room-filter .multiview-label {
    display: none;
  }
}

.watch-page .section {
  padding: 2.1rem 1.5rem;
}

.watch-page .card {
  margin: 1.25rem auto;
}

@media (max-width: 640px) {
  .watch-page .section {
    padding: 1rem 0.55rem;
  }

  .watch-page .card {
    margin: 0.75rem auto;
  }
}
