/* ================================
.temporarily-hidden {
  display: none !important;
}
   ================================ */

/* ================================
   Variables
   ================================ */

:root {
  --page-bg: #ebe9dd;
  --brown: #4b1608;
  --orange: #f06423;
  --pink: #e95af2;
  --red: #ff443a;
  --text: #3f160a;
  --line: rgba(75, 22, 8, 0.65);
  --muted: rgba(75, 22, 8, 0.75);
  --tab-bg: rgba(255, 255, 255, 0.55);
  --panel-bg: rgba(255, 255, 255, 0.28);
  --card-bg: rgba(255, 255, 255, 0.42);
  --soft-card-bg: rgba(255, 255, 255, 0.55);
  --border: rgba(66, 21, 8, 0.18);
  --shadow: rgba(0, 0, 0, 0.18);
  --soft-shadow: rgba(0, 0, 0, 0.12);
  --gradient-brand: linear-gradient(135deg, var(--orange), var(--pink));
  --gradient-orange: linear-gradient(90deg, #f47b20 0%, var(--orange) 100%);
  --gradient-pink: linear-gradient(90deg, #e95af2 0%, #e86af2 100%);
  --gradient-red: linear-gradient(90deg, #ff443a 0%, var(--red) 100%);
  --gradient-card: linear-gradient(
    135deg,
    rgba(240, 100, 35, 0.95),
    rgba(233, 90, 242, 0.88)
  );
}


/* ================================
   Base
   ================================ */

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
  padding: 0;
  background: var(--page-bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

body {
  padding: 28px 14px 48px;
}

main {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
}


/* ================================
   Title and tabs
   ================================ */

.page-title {
  margin-bottom: 26px;
  text-align: center;
}

.page-title h1 {
  margin: 0;
  color: var(--brown);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  max-width: 1100px;
  margin: 0 auto 30px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--tab-bg);
  box-shadow: 0 12px 32px var(--shadow);
}

.tab {
  padding: 16px 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--brown);
  cursor: pointer;
  font-size: clamp(0.9rem, 2.1vw, 1.15rem);
  font-weight: 800;
  line-height: 1.1;
  opacity: 0.7;
  transition: 160ms ease;
}

.tab:hover {
  background: rgba(255, 255, 255, 0.45);
  opacity: 1;
}

.tab.active {
  background: var(--gradient-brand);
  box-shadow: 0 10px 24px rgba(240, 100, 35, 0.25);
  color: white;
  opacity: 1;
}

.content {
  display: none;
}

.content.active {
  display: block;
  animation: fadeIn 160ms ease;
}


/* ================================
   Shared panels and cards
   ================================ */

.schedule-board,
.puzzle-board,
.charystream-board {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--panel-bg);
  box-shadow: 0 16px 36px var(--shadow);
}

.schedule-board {
  padding: 28px 18px 38px;
}

.puzzle-board,
.charystream-board {
  padding: 32px 24px 40px;
}

.schedule-header,
.puzzle-header,
.charystream-header {
  margin-bottom: 28px;
  text-align: center;
}

.schedule-header h2,
.puzzle-header h2,
.charystream-header h2 {
  margin: 0;
  color: var(--brown);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.schedule-header p,
.puzzle-header p,
.charystream-header p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.puzzle-hero-card,
.puzzle-card,
.puzzle-final-card,
.charystream-hero-card,
.charystream-card {
  padding: 24px 28px;
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
}

.puzzle-hero-card,
.charystream-hero-card {
  background: var(--gradient-card);
}

.puzzle-card,
.charystream-card {
  background: var(--card-bg);
}

.puzzle-hero-card h3,
.puzzle-card h3,
.puzzle-final-card h3,
.charystream-hero-card h3,
.charystream-card h3 {
  margin: 0 0 12px;
  color: var(--brown);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

.puzzle-final-card h3 {
  color: white;
}

.puzzle-hero-card p,
.puzzle-card p,
.puzzle-final-card p,
.charystream-hero-card p,
.charystream-card p {
  margin: 0 0 10px;
  font-size: 1rem;
  line-height: 1.48;
}

.puzzle-hero-card p:last-child,
.puzzle-card p:last-child,
.puzzle-final-card p:last-child {
  margin-bottom: 0;
}

.puzzle-button,
.charystream-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  color: white;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.puzzle-button:hover,
.charystream-button:hover {
  transform: translateY(-1px);
}


/* ================================
   Donation goals
   ================================ */

.goals-board {
  position: relative;
  width: 100%;
  padding: 34px 18px 48px;
  overflow: hidden;
  background: var(--page-bg);
}

.goals-header {
  position: relative;
  display: grid;
  grid-template-columns: 90px 1fr 310px;
  align-items: start;
  gap: 18px;
  min-height: 180px;
  margin-bottom: 18px;
}

.goal-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 86px;
  margin-top: 4px;
  border-radius: 22px;
  background: #f5a6eb;
  transform: rotate(-14deg);
}

.goal-icon svg {
  width: 56px;
  height: 56px;
  fill: none;
  stroke: var(--brown);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4.5;
}

.goal-title-block {
  padding-top: 0;
}

.goal-title {
  margin: 0;
  color: var(--brown);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.goal-subtitle {
  margin-top: 8px;
  color: var(--brown);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic;
  line-height: 1;
}

.header-line {
  width: 100%;
  height: 2px;
  margin-top: 14px;
  background: var(--line);
}

.goal-intro {
  margin: 12px 0 0;
  color: var(--brown);
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
}

.streamer-area {
  position: relative;
  min-height: 160px;
}

.charystream-badge {
  position: absolute;
  z-index: 2;
  top: 26px;
  left: -28px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 82px;
  border-radius: 50%;
  background: var(--brown);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.16);
  color: white;
  font-size: 1.9rem;
  font-style: italic;
  line-height: 0.9;
  text-align: center;
  transform: rotate(5deg);
}

.streamer-photo {
  position: absolute;
  z-index: 1;
  top: -20px;
  right: 8px;
  width: 170px;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  transform: rotate(-8deg);
}

.goals-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 0;
  padding: 0 70px 0 74px;
  list-style: none;
}

.goal-row {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 12px 28px 12px 76px;
  border-radius: 0 999px 999px 0;
  color: var(--text);
  font-size: clamp(1rem, 1.55vw, 1.35rem);
  line-height: 1.25;
}

.goal-row.orange {
  background: var(--gradient-orange);
}

.goal-row.pink {
  background: var(--gradient-pink);
}

.goal-row.red {
  background: var(--gradient-red);
}

.goal-row.fil-rouge {
  min-height: 76px;
  margin-bottom: 2px;
  padding-left: 120px;
}

.amount {
  position: absolute;
  top: 50%;
  left: -40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 106px;
  height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--brown);
  color: white;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-style: italic;
  white-space: nowrap;
  transform: translateY(-50%) rotate(-4deg);
}

.amount-long {
  min-width: 136px;
  height: 62px;
  padding: 0 18px;
  font-size: clamp(0.9rem, 1.45vw, 1.2rem);
  line-height: 1.05;
  text-align: center;
  white-space: normal;
}


/* ================================
   Schedule
   ================================ */

.now-live-card {
  margin: 0 auto 26px;
  padding: 20px 24px;
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 10px 24px var(--soft-shadow);
}

.now-live-card.is-rest {
  background: rgba(255, 255, 255, 0.42);
}

.now-live-card.is-live {
  background: var(--gradient-card);
}

.now-live-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.now-live-text {
  min-width: 0;
}

.now-live-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
  color: var(--brown);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.now-live-dot {
  width: 14px;
  height: 14px;
  border: 3px solid var(--brown);
  border-radius: 50%;
  background: var(--page-bg);
}

.now-live-card.is-live .now-live-dot {
  border-color: #18704a;
  background: #36e66f;
  animation: livePulse 2.2s ease-in-out infinite;
}

.now-live-card h3 {
  margin: 0 0 6px;
  color: var(--brown);
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.now-live-card p {
  margin: 0;
  color: rgba(63, 22, 10, 0.9);
  font-size: 1rem;
  font-weight: 800;
}

.now-live-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--brown);
  color: white;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.now-live-card.is-live .now-live-button {
  background: white;
  color: var(--brown);
}

.now-live-button:hover {
  transform: translateY(-1px);
}

.schedule-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0 10px 8px 28px;
}

.schedule-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 96px;
  width: 4px;
  border-radius: 999px;
  background: rgba(75, 22, 8, 0.22);
}

.day-separator {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 6px 0 2px;
  padding: 6px 0;
}

.day-separator::before,
.day-separator::after {
  content: "";
  flex: 1;
  height: 3px;
  border-radius: 999px;
  background: var(--brown);
  opacity: 0.75;
}

.day-separator span {
  padding: 8px 26px;
  border-radius: 999px;
  background: var(--brown);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
  color: white;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.schedule-item {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: stretch;
  gap: 18px;
  min-height: 92px;
}

.schedule-time {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  align-self: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--brown);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
  color: white;
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
}

.schedule-time::after {
  content: "";
  position: absolute;
  z-index: 6;
  right: -31px;
  width: 18px;
  height: 18px;
  border: 4px solid var(--brown);
  border-radius: 50%;
  background: var(--page-bg);
}

.schedule-item.is-past .schedule-time::after {
  border-color: #111111;
  background: #111111;
}

.schedule-item.is-past .schedule-content {
  opacity: 0.68;
}

.schedule-item.is-live .schedule-time::before {
  content: "";
  position: absolute;
  z-index: 7;
  right: -31px;
  width: 18px;
  height: 18px;
  border: 4px solid #18704a;
  border-radius: 50%;
  background: #36e66f;
  box-shadow: 0 0 0 0 rgba(54, 230, 111, 0.65);
  animation: livePulse 2.2s ease-in-out infinite;
}

.schedule-content {
  padding: 18px 24px;
  border-radius: 24px;
  box-shadow: 0 10px 24px var(--soft-shadow);
  color: var(--text);
}

.schedule-item.orange .schedule-content {
  background: var(--gradient-orange);
}

.schedule-item.pink .schedule-content {
  background: var(--gradient-pink);
}

.schedule-content h3 {
  margin: 0 0 6px;
  color: var(--brown);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.schedule-content p {
  margin: 0;
  color: rgba(63, 22, 10, 0.9);
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  line-height: 1.35;
}

.people-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.person-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(217, 255, 235, 0.85);
  color: #18704a;
  font-size: 0.85rem;
  font-weight: 800;
  line-height: 1;
}

.person-chip::before {
  content: "●";
  margin-right: 7px;
  color: #18704a;
  font-size: 0.65rem;
}

/* ================================
   Gifts
   ================================ */
.gift-bonus-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 14px;
  padding: 14px 16px;
  border: 2px solid rgba(75, 22, 8, 0.22);
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(240, 100, 35, 0.18),
    rgba(233, 90, 242, 0.20)
  );
}

.gift-bonus-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--brown);
  color: white;
  font-size: 1.25rem;
}

.gift-bonus-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--brown);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.gift-bonus-card p {
  margin: 0;
  color: rgba(63, 22, 10, 0.9);
  font-size: 0.98rem;
  line-height: 1.35;
}

.gifts-board {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  padding: 32px 24px 40px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--panel-bg);
  box-shadow: 0 16px 36px var(--shadow);
}

.gifts-header {
  margin-bottom: 28px;
  text-align: center;
}

.gifts-header h2 {
  margin: 0;
  color: var(--brown);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.gifts-header p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.gifts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.gift-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: var(--card-bg);
  box-shadow: 0 10px 24px var(--soft-shadow);
}

.gift-card-featured {
  background: var(--gradient-card);
}

.gift-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 260px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 0 0 1px rgba(75, 22, 8, 0.10);
}

.gift-image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 330px;
  object-fit: contain;
}

.gift-content {
  min-width: 0;
}

.gift-label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--brown);
  color: white;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gift-content h3 {
  margin: 0 0 12px;
  color: var(--brown);
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  line-height: 1.05;
}

.gift-content p {
  margin: 0 0 10px;
  color: rgba(63, 22, 10, 0.95);
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  line-height: 1.42;
}

.gift-condition {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.55);
  font-weight: 800;
}

.gift-bonus {
  color: rgba(75, 22, 8, 0.78);
  font-size: 0.95rem;
  font-style: italic;
}

/* ================================
   Community puzzle
   ================================ */

.puzzle-content {
  display: grid;
  gap: 20px;
}

.puzzle-credit {
  margin-top: 6px;
  color: rgba(75, 22, 8, 0.55);
  font-size: 0.9rem;
  font-style: italic;
}

.puzzle-hero-card {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 22px;
}

.puzzle-final-card {
  background: var(--brown);
  color: white;
  text-align: center;
}

.puzzle-quick-info {
  display: flex;
  flex-direction: column;
  align-self: center;
  gap: 10px;
}

.puzzle-quick-info span {
  display: block;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  color: var(--brown);
  font-weight: 900;
}

.puzzle-button {
  margin: 10px 0 12px;
  background: var(--gradient-brand);
}

.puzzle-note {
  color: rgba(75, 22, 8, 0.78);
  font-size: 0.95rem;
}

.puzzle-definition-list {
  display: grid;
  gap: 10px;
  margin: 14px 0;
}

.puzzle-definition-list div {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  background: var(--soft-card-bg);
}

.puzzle-definition-list strong {
  color: var(--brown);
}

.puzzle-screen {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
  margin: 18px auto 0;
  border: 1px solid rgba(75, 22, 8, 0.12);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.puzzle-screen-small {
  max-width: 280px;
}


/* ================================
   Charystream
   ================================ */

.charystream-hero-card {
  margin-bottom: 12px;
}

.charystream-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 16px 0 14px;
}

.charystream-stat-card {
  padding: 22px 18px;
  border-radius: 24px;
  background: var(--brown);
  box-shadow: 0 10px 24px var(--soft-shadow);
  color: white;
  text-align: center;
}

.charystream-stat-card strong {
  display: block;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1;
}

.charystream-stat-card span {
  display: block;
  margin-top: 8px;
  font-size: 0.95rem;
  opacity: 0.88;
}

.charystream-card {
  margin-top: 6px;
}

.charystream-button {
  margin: 12px 0 0;
  background: var(--brown);
}

.charystream-button.secondary {
  background: var(--gradient-brand);
}

.charystream-date-badge {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  margin: 2px 0 18px;
  padding: 12px 18px;
  border-radius: 18px;
  background: var(--brown);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
  color: white;
}

.charystream-date-badge strong {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  opacity: 0.82;
  text-transform: uppercase;
}

.charystream-date-badge span {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 900;
  line-height: 1.1;
}


/* ================================
   Footer and animations
   ================================ */

.site-footer {
  margin-top: 34px;
  color: rgba(75, 22, 8, 0.45);
  font-size: 0.82rem;
  font-style: italic;
  text-align: center;
}

.site-footer span {
  opacity: 0.75;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes livePulse {
  0% {
    opacity: 0.45;
    box-shadow: 0 0 0 0 rgba(54, 230, 111, 0.65);
  }

  50% {
    opacity: 1;
    box-shadow: 0 0 0 10px rgba(54, 230, 111, 0);
  }

  100% {
    opacity: 0.45;
    box-shadow: 0 0 0 0 rgba(54, 230, 111, 0);
  }
}


/* ================================
   Responsive
   ================================ */

@media (max-width: 900px) {
  .goals-header {
    grid-template-columns: 70px 1fr;
    min-height: 160px;
  }

  .streamer-area {
    grid-column: 1 / -1;
    min-height: 120px;
  }

  .charystream-badge {
    top: 8px;
    right: 128px;
    left: auto;
    width: 150px;
    height: 62px;
    font-size: 1.35rem;
  }

  .streamer-photo {
    top: -8px;
    right: 16px;
    width: 110px;
  }

  .goal-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
  }

  .goal-icon svg {
    width: 42px;
    height: 42px;
  }

  .goals-list {
    gap: 18px;
    padding: 0 12px 0 44px;
  }

  .goal-row {
    min-height: 48px;
    padding: 10px 18px 10px 58px;
  }

  .goal-row.fil-rouge {
    min-height: 72px;
    padding-left: 100px;
  }

  .amount {
    left: -34px;
    min-width: 84px;
    height: 42px;
    font-size: 1.1rem;
  }

  .amount-long {
    min-width: 112px;
    height: 54px;
    font-size: 0.85rem;
  }

  .puzzle-hero-card {
    grid-template-columns: 1fr;
  }
   .gift-card {
  grid-template-columns: 220px 1fr;
}

.gift-image-wrap {
  min-height: 220px;
}
}

@media (max-width: 800px) {
  .charystream-stat-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .schedule-board {
    padding: 22px 8px 30px;
    border-radius: 20px;
  }

  .now-live-card {
    margin-bottom: 22px;
    padding: 18px 16px;
    border-radius: 20px;
  }

  .now-live-main {
    flex-direction: column;
    align-items: stretch;
  }

  .now-live-button {
    width: 100%;
  }

  .puzzle-board,
  .charystream-board {
    padding: 24px 12px 30px;
    border-radius: 20px;
  }

  .schedule-timeline {
    gap: 14px;
    padding-right: 4px;
    padding-left: 8px;
  }

  .schedule-timeline::before {
    left: 64px;
  }

  .schedule-item {
    grid-template-columns: 74px 1fr;
    gap: 12px;
    min-height: 82px;
  }

  .schedule-time {
    min-height: 42px;
    padding: 0 8px;
    font-size: 0.82rem;
  }

  .schedule-time::after {
    right: -22px;
    width: 14px;
    height: 14px;
    border-width: 3px;
  }

  .schedule-item.is-live .schedule-time::before {
    right: -22px;
    width: 14px;
    height: 14px;
    border-width: 3px;
  }

  .schedule-content {
    padding: 14px 16px;
    border-radius: 18px;
  }

  .day-separator {
    gap: 10px;
    padding: 4px 0;
  }

  .day-separator span {
    padding: 8px 14px;
    font-size: 0.95rem;
    text-align: center;
    white-space: normal;
  }

  .person-chip {
    padding: 5px 9px;
    font-size: 0.75rem;
  }

  .puzzle-hero-card,
  .puzzle-card,
  .puzzle-final-card,
  .charystream-hero-card,
  .charystream-card {
    padding: 20px 18px;
    border-radius: 20px;
  }

  .puzzle-definition-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
   .gifts-board {
  padding: 24px 12px 30px;
  border-radius: 20px;
}

.gift-card {
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 20px 18px;
  border-radius: 20px;
}

.gift-image-wrap {
  min-height: 220px;
}

.gift-image-wrap img {
  max-height: 300px;
}
}

@media (max-width: 600px) {
  body {
    padding: 18px 8px 36px;
  }

 .tabs {
  display: flex;
  gap: 6px;
  max-width: 100%;
  overflow-x: auto;
  padding: 6px;
  border-radius: 22px;
  scrollbar-width: none;
}

.tabs::-webkit-scrollbar {
  display: none;
}

.tab {
  flex: 0 0 auto;
  min-width: max-content;
  padding: 11px 14px;
  border-radius: 16px;
  font-size: 0.78rem;
}

  .goals-board {
    padding: 22px 6px 34px;
  }

  .goals-header {
    grid-template-columns: 54px 1fr;
    gap: 10px;
    min-height: 150px;
  }

  .goal-title {
    font-size: 1.9rem;
  }

  .goal-subtitle {
    font-size: 1.35rem;
  }

  .goal-intro {
    font-size: 0.9rem;
  }

  .goal-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }

  .goal-icon svg {
    width: 34px;
    height: 34px;
  }

  .charystream-badge {
    right: 96px;
    width: 120px;
    height: 52px;
    font-size: 1.05rem;
  }

  .streamer-photo {
    right: 8px;
    width: 82px;
  }

  .goals-list {
    gap: 14px;
    padding-right: 4px;
    padding-left: 34px;
  }

  .goal-row {
    min-height: 44px;
    padding: 10px 12px 10px 48px;
    font-size: 0.9rem;
  }

  .goal-row.fil-rouge {
    min-height: 72px;
    padding-left: 62px;
    font-size: 0.78rem;
  }

  .amount {
    left: -30px;
    min-width: 70px;
    height: 36px;
    padding: 0 12px;
    font-size: 0.95rem;
  }

  .amount-long {
    min-width: 76px;
    height: 48px;
    padding: 0 8px;
    font-size: 0.62rem;
    line-height: 1.05;
  }

  .puzzle-screen {
    max-width: 100%;
    margin-top: 14px;
    border-radius: 14px;
  }

  .puzzle-screen-small {
    max-width: 240px;
  }

  .charystream-date-badge {
    width: 100%;
  }
}

.inline-link {
  color: var(--brown);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.inline-link:hover {
  opacity: 0.75;
}

.gift-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 12px;
}

.gift-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--brown);
  color: white;
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
}

.gift-socials a:hover {
  transform: translateY(-1px);
}
