:root {
  --bg1: #ffe7f3;
  --bg2: #f8efff;
  --card: #fff9fd;
  --text: #7a3c75;
  --text-dark: #5f295b;
  --muted: #92618d;
  --accent: #ea6fb0;
  --accent-2: #b56cff;
  --accent-soft: #f8e5f1;
  --accent-soft-2: #f3d8ea;
  --tikkie: #ffd400;
  --tikkie-text: #432c00;
  --shadow: 0 14px 34px rgba(181, 108, 255, 0.14);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --maxw: 1180px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Nunito", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, #ffd4ea 0%, transparent 28%),
    radial-gradient(circle at 90% 10%, #eddcff 0%, transparent 24%),
    linear-gradient(180deg, var(--bg1) 0%, var(--bg2) 100%);
  overflow-x: hidden;
  transition:
    background 0.9s ease,
    color 0.6s ease;
}

body.day-mode {
  --bg1: #ffe7f3;
  --bg2: #f8efff;
  --card: #fff9fd;
  --text: #7a3c75;
  --text-dark: #5f295b;
  --muted: #92618d;
  --accent: #ea6fb0;
  --accent-2: #b56cff;
  --accent-soft: #f8e5f1;
  --accent-soft-2: #f3d8ea;
  --shadow: 0 14px 34px rgba(181, 108, 255, 0.14);
}

body.night-mode {
  --bg1: #4b3b67;
  --bg2: #30284a;
  --card: #f7eefb;
  --text: #7a3c75;
  --text-dark: #5f295b;
  --muted: #8f6994;
  --accent: #ea6fb0;
  --accent-2: #b56cff;
  --accent-soft: #ece0f4;
  --accent-soft-2: #e4d6ef;
  --shadow: 0 16px 36px rgba(82, 58, 112, 0.18);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 182, 221, 0.24) 0%, transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(204, 181, 255, 0.24) 0%, transparent 24%),
    linear-gradient(180deg, #5a4a79 0%, #332c4d 100%);
}

.floating-decor {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.floaty {
  position: absolute;
  font-size: clamp(24px, 3.6vw, 38px);
  opacity: 0.18;
  animation-name: driftUp;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  user-select: none;
  transition: opacity 0.6s ease, transform 0.6s ease, filter 0.6s ease;
}

body.night-mode .floaty {
  opacity: 0.42;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.55));
}

.floaty:nth-child(1)  { left: 4%;  animation-duration: 22s; animation-delay: -3s; }
.floaty:nth-child(2)  { left: 10%; animation-duration: 29s; animation-delay: -9s; }
.floaty:nth-child(3)  { left: 18%; animation-duration: 25s; animation-delay: -14s; }
.floaty:nth-child(4)  { left: 26%; animation-duration: 31s; animation-delay: -6s; }
.floaty:nth-child(5)  { left: 34%; animation-duration: 24s; animation-delay: -18s; }
.floaty:nth-child(6)  { left: 42%; animation-duration: 28s; animation-delay: -12s; }
.floaty:nth-child(7)  { left: 50%; animation-duration: 23s; animation-delay: -4s; }
.floaty:nth-child(8)  { left: 58%; animation-duration: 30s; animation-delay: -11s; }
.floaty:nth-child(9)  { left: 66%; animation-duration: 26s; animation-delay: -16s; }
.floaty:nth-child(10) { left: 74%; animation-duration: 32s; animation-delay: -7s; }
.floaty:nth-child(11) { left: 82%; animation-duration: 27s; animation-delay: -13s; }
.floaty:nth-child(12) { left: 90%; animation-duration: 24s; animation-delay: -20s; }

@keyframes driftUp {
  0% {
    transform: translateY(110vh) translateX(0) rotate(0deg);
  }
  25% {
    transform: translateY(75vh) translateX(8px) rotate(4deg);
  }
  50% {
    transform: translateY(45vh) translateX(-8px) rotate(-4deg);
  }
  75% {
    transform: translateY(15vh) translateX(6px) rotate(3deg);
  }
  100% {
    transform: translateY(-15vh) translateX(-6px) rotate(-3deg);
  }
}

.page-layer {
  position: relative;
  z-index: 1;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 26px 16px 40px;
}

.card {
  background: var(--card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.7);
  position: relative;
  transition:
    background 0.8s ease,
    box-shadow 0.8s ease,
    border-color 0.8s ease;
}

body.night-mode .card {
  border-color: rgba(255,255,255,0.35);
}

.hero {
  padding: 34px 20px 20px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.85), rgba(255,248,252,0.92));
  transition: background 0.8s ease;
}

body.night-mode .hero {
  background:
    linear-gradient(180deg, rgba(255, 250, 254, 0.82), rgba(246, 236, 251, 0.94));
}

.title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: nowrap;
  margin-bottom: 14px;
}

.title-photo {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 auto;
  border: 5px solid #fff;
  box-shadow: 0 10px 24px rgba(234, 111, 176, 0.18);
  background: #f7ddec;
  transition:
    border-color 0.8s ease,
    box-shadow 0.8s ease,
    background 0.8s ease;
}

body.night-mode .title-photo {
  border-color: rgba(255,255,255,0.95);
  background: #ead9f0;
  box-shadow: 0 10px 24px rgba(126, 90, 164, 0.14);
}

.title-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

h1 {
  margin: 0;
  font-family: "Baloo 2", "Nunito", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.95;
  color: var(--text-dark);
  text-align: center;
  letter-spacing: 0.3px;
  transition: color 0.6s ease;
}

.title-sub {
  display: block;
  font-size: 0.55em;
  margin-top: 8px;
  color: var(--accent);
  letter-spacing: 0.6px;
  transition: color 0.6s ease;
}

.intro {
  max-width: 860px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
  padding: 10px 8px 0;
  transition: color 0.6s ease;
}

.decor {
  margin-top: 16px;
  font-size: 1.2rem;
  color: var(--accent);
  letter-spacing: 8px;
  user-select: none;
  transition: color 0.6s ease;
}

.section {
  padding: 22px 24px 26px;
}

.section-header {
  text-align: center;
  margin-bottom: 16px;
}

.section-header h2 {
  margin: 0 0 6px;
  font-family: "Baloo 2", "Nunito", sans-serif;
  color: var(--text-dark);
  font-size: 2rem;
  transition: color 0.6s ease;
}

.section-header p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  transition: color 0.6s ease;
}

.local-inline-info {
  margin-top: 12px;
  display: inline-block;
  max-width: 100%;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(181, 108, 255, 0.15);
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.45;
  box-shadow: 0 6px 14px rgba(181, 108, 255, 0.08);
  transition:
    background 0.8s ease,
    color 0.6s ease,
    border-color 0.8s ease,
    box-shadow 0.8s ease;
}

body.night-mode .local-inline-info {
  background: rgba(255,255,255,0.58);
  border-color: rgba(181, 108, 255, 0.16);
  box-shadow: 0 6px 14px rgba(126, 90, 164, 0.10);
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.carousel-btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  padding: 11px 18px;
  border-radius: var(--radius-pill);
  background: var(--accent-soft);
  color: var(--text-dark);
  font-family: "Baloo 2", "Nunito", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  box-shadow: 0 6px 14px rgba(122, 60, 117, 0.08);
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, box-shadow 0.8s ease;
}

.carousel-btn:hover {
  transform: translateY(-1px);
  background: var(--accent-soft-2);
}

.carousel-btn.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
}

.stream-panel {
  display: none;
}

.stream-panel.active {
  display: block;
}

.video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--radius-lg);
  overflow: clip;
  box-shadow: 0 14px 28px rgba(122, 60, 117, 0.12);
  border: 4px solid #fff;
  transition:
    box-shadow 0.8s ease,
    border-color 0.8s ease;
}

body.night-mode .video-frame {
  border-color: rgba(255,255,255,0.94);
  box-shadow: 0 14px 28px rgba(126, 90, 164, 0.14);
}

.video-frame > div {
  width: 100%;
  height: 100%;
}

.video-frame iframe,
.video-frame img {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #000;
  overflow: hidden;
}

.video-frame iframe {
  scrollbar-width: none;
}

.video-frame iframe::-webkit-scrollbar {
  display: none;
}

.video-frame img {
  object-fit: contain;
}

.stream-caption {
  text-align: center;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.98rem;
  transition: color 0.6s ease;
}

.after-streams-note {
  text-align: center;
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 1rem;
  transition: color 0.6s ease;
}

.likes,
.support,
.guestbook,
.facts {
  text-align: center;
  padding: 0 20px 24px;
}

.likes-box,
.support-box,
.guestbook-box,
.facts-box {
  max-width: 720px;
  margin: 0 auto;
  border-radius: 24px;
  padding: 20px 20px 18px;
  transition:
    background 0.8s ease,
    border-color 0.8s ease,
    box-shadow 0.8s ease;
}

.likes-box {
  background: linear-gradient(180deg, #fff7fc 0%, #f8ebff 100%);
  border: 2px dashed rgba(234, 111, 176, 0.18);
  box-shadow: 0 8px 20px rgba(234, 111, 176, 0.12);
}

.support-box {
  background: linear-gradient(180deg, #fffaf0 0%, #fff6dc 100%);
  border: 2px dashed rgba(122, 60, 117, 0.15);
  box-shadow: 0 8px 20px rgba(255, 212, 0, 0.12);
}

.guestbook-box {
  background: linear-gradient(180deg, #fff7fc 0%, #f7f0ff 100%);
  border: 2px dashed rgba(181, 108, 255, 0.16);
  box-shadow: 0 8px 20px rgba(181, 108, 255, 0.12);
}

.facts-box {
  background: linear-gradient(180deg, #fff8fc 0%, #fdf1ff 100%);
  border: 2px dashed rgba(234, 111, 176, 0.18);
  box-shadow: 0 8px 20px rgba(234, 111, 176, 0.10);
}

body.night-mode .likes-box {
  background: linear-gradient(180deg, #fcf2ff 0%, #f4eafb 100%);
  border-color: rgba(234, 111, 176, 0.18);
  box-shadow: 0 8px 18px rgba(126, 90, 164, 0.08);
}

body.night-mode .support-box {
  background: linear-gradient(180deg, #fff7ea 0%, #f8eed1 100%);
  border-color: rgba(255, 212, 0, 0.14);
  box-shadow: 0 8px 18px rgba(126, 90, 164, 0.08);
}

body.night-mode .guestbook-box {
  background: linear-gradient(180deg, #fbf4ff 0%, #f3ebfb 100%);
  border-color: rgba(181, 108, 255, 0.16);
  box-shadow: 0 8px 18px rgba(126, 90, 164, 0.08);
}

body.night-mode .facts-box {
  background: linear-gradient(180deg, #fff4fa 0%, #f8eefb 100%);
  border-color: rgba(234, 111, 176, 0.18);
  box-shadow: 0 8px 18px rgba(126, 90, 164, 0.08);
}

.likes-title,
.support-title,
.guestbook-title,
.facts-title {
  margin: 0 0 8px;
  font-family: "Baloo 2", "Nunito", sans-serif;
  color: var(--text-dark);
  font-size: 1.5rem;
  transition: color 0.6s ease;
}

.likes-text,
.support-text,
.guestbook-text,
.facts-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  transition: color 0.6s ease;
}

.likes-counter-wrap {
  margin-top: 18px;
  display: grid;
  gap: 14px;
  justify-items: center;
}

.likes-counter {
  min-width: 220px;
  padding: 16px 22px;
  border-radius: 22px;
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(234, 111, 176, 0.16);
  box-shadow: 0 8px 18px rgba(181, 108, 255, 0.08);
}

body.night-mode .likes-counter {
  background: rgba(255,255,255,0.68);
  border-color: rgba(234, 111, 176, 0.14);
}

.likes-number {
  font-family: "Baloo 2", "Nunito", sans-serif;
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  line-height: 1;
  color: var(--text-dark);
  margin: 0 0 4px;
  transition: color 0.6s ease;
}

.likes-subtext {
  color: var(--muted);
  font-size: 0.98rem;
  transition: color 0.6s ease;
}

.like-btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  display: inline-block;
  margin-top: 2px;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  font-family: "Baloo 2", "Nunito", sans-serif;
  font-size: 1.06rem;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(181, 108, 255, 0.18);
  transition: transform 0.15s ease, opacity 0.15s ease, box-shadow 0.8s ease;
}

.like-btn:hover {
  transform: translateY(-1px);
  opacity: 0.98;
}

.like-btn:disabled {
  opacity: 0.82;
  cursor: wait;
  transform: none;
}

.likes-note,
.support-note,
.guestbook-note,
.fact-note {
  margin-top: 8px;
  font-size: 0.92rem;
  color: var(--muted);
  transition: color 0.6s ease;
}

.facts-grid {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.fact-card {
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(234, 111, 176, 0.16);
  border-radius: 18px;
  padding: 16px;
  color: var(--text-dark);
  box-shadow: 0 6px 16px rgba(181, 108, 255, 0.06);
  transition:
    background 0.8s ease,
    border-color 0.8s ease,
    box-shadow 0.8s ease,
    color 0.6s ease;
}

body.night-mode .fact-card {
  background: rgba(255,255,255,0.68);
  border-color: rgba(234, 111, 176, 0.14);
  box-shadow: 0 6px 14px rgba(126, 90, 164, 0.08);
}

.fact-card-title {
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 6px;
  transition: color 0.6s ease;
}

.fact-counter-number {
  font-family: "Baloo 2", "Nunito", sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
  color: var(--text-dark);
  margin: 6px 0 4px;
  transition: color 0.6s ease;
}

.fact-counter-sub {
  color: var(--muted);
  font-size: 0.98rem;
  transition: color 0.6s ease;
}

.fact-random-text {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-dark);
  min-height: 52px;
  transition: color 0.6s ease;
}

.fact-random-text a,
.info-block a,
.inline-info-link,
footer a {
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
}

.fact-random-text a:hover,
.info-block a:hover,
.inline-info-link:hover,
footer a:hover {
  text-decoration: underline;
}

.fact-btn,
.back-btn,
.tikkie-btn,
.message-btn {
  display: inline-block;
  margin-top: 14px;
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 800;
  border: none;
  outline: none;
  box-shadow: 0 10px 20px rgba(181, 108, 255, 0.18);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.fact-btn,
.back-btn,
.message-btn {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  box-shadow: 0 10px 20px rgba(181, 108, 255, 0.18);
}

.tikkie-btn {
  background: var(--tikkie);
  color: var(--tikkie-text);
  box-shadow: 0 10px 20px rgba(255, 212, 0, 0.22);
}

.fact-btn:hover,
.back-btn:hover,
.tikkie-btn:hover,
.message-btn:hover {
  transform: translateY(-1px);
  opacity: 0.97;
}

.guestbook-list {
  margin-top: 18px;
  display: grid;
  gap: 12px;
  text-align: left;
}

.guestbook-item {
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(181, 108, 255, 0.14);
  border-radius: 18px;
  padding: 14px 16px;
  transition:
    background 0.8s ease,
    border-color 0.8s ease;
}

body.night-mode .guestbook-item {
  background: rgba(255,255,255,0.68);
  border-color: rgba(181, 108, 255, 0.14);
}

.guestbook-meta {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 6px;
  font-weight: 700;
  transition: color 0.6s ease;
}

.guestbook-message {
  color: var(--text-dark);
  line-height: 1.55;
  white-space: pre-wrap;
  word-break: break-word;
  transition: color 0.6s ease;
}

.guestbook-empty {
  margin-top: 16px;
  color: var(--muted);
  font-style: italic;
  transition: color 0.6s ease;
}

.top-actions,
.bottom-actions {
  text-align: center;
  margin-top: 20px;
}

.info-block {
  max-width: 920px;
  margin: 0 auto 26px;
  background: linear-gradient(180deg, #fff7fc 0%, #f8efff 100%);
  border: 2px dashed rgba(181, 108, 255, 0.16);
  box-shadow: 0 8px 20px rgba(181, 108, 255, 0.10);
  border-radius: 24px;
  padding: 20px;
}

.info-block h3 {
  margin: 0 0 12px;
  font-family: "Baloo 2", "Nunito", sans-serif;
  color: var(--text-dark);
  font-size: 1.55rem;
  text-align: center;
}

.info-block p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  text-align: center;
  font-size: 1rem;
}

.main-image-wrap {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.main-image {
  width: 100%;
  max-width: 760px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 14px 28px rgba(122, 60, 117, 0.12);
  background: #fff;
}

.main-image img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.streams-grid {
  max-width: 980px;
  margin: 0 auto 30px;
  display: grid;
  gap: 18px;
}

.stream-card {
  background: linear-gradient(180deg, #fff8fc 0%, #f8efff 100%);
  border: 2px dashed rgba(234, 111, 176, 0.18);
  border-radius: 24px;
  box-shadow: 0 8px 20px rgba(234, 111, 176, 0.10);
  overflow: hidden;
  padding: 18px;
}

.stream-card h3 {
  margin: 0 0 10px;
  font-family: "Baloo 2", "Nunito", sans-serif;
  color: var(--text-dark);
  font-size: 1.5rem;
  text-align: center;
}

.stream-image {
  width: 100%;
  max-width: 760px;
  margin: 0 auto 14px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 14px 28px rgba(122, 60, 117, 0.12);
  background: #fff;
}

.stream-image img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.stream-text {
  color: var(--muted);
  line-height: 1.7;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

footer {
  text-align: center;
  padding: 18px 20px 24px;
  color: var(--muted);
  font-size: 0.95rem;
  background: #fff7fb;
  border-top: 1px solid #f6ddea;
  transition:
    background 0.8s ease,
    border-color 0.8s ease,
    color 0.6s ease;
}

body.night-mode footer {
  background: #f5ebf8;
  border-top-color: rgba(181, 108, 255, 0.12);
}

/* ===== Aanvulling voor berichtenpagina / extra berichtenlink ===== */

.guestbook-more-link {
  margin-top: 18px;
  text-align: center;
}

.guestbook-more-link .inline-info-link {
  display: inline-block;
  font-size: 0.98rem;
  line-height: 1.5;
}

.all-messages-page .guestbook-box {
  max-width: 860px;
}

.all-messages-page .guestbook-list {
  margin-top: 20px;
}

.all-messages-page .guestbook-item {
  padding: 16px 18px;
}

.all-messages-page .guestbook-message {
  font-size: 1rem;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .title-photo {
    width: 92px;
    height: 92px;
  }
}

@media (max-width: 700px) {
  .title-row {
    gap: 10px;
  }

  .title-photo {
    width: 72px;
    height: 72px;
  }

  .intro {
    font-size: 1rem;
  }

  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .local-inline-info {
    font-size: 0.92rem;
    padding: 8px 12px;
  }

  .fact-random-text {
    font-size: 1rem;
    min-height: 0;
  }

  .floaty {
    opacity: 0.11;
  }

  body.night-mode .floaty {
    opacity: 0.34;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.45));
  }

  .guestbook-more-link .inline-info-link {
    font-size: 0.95rem;
  }

  .all-messages-page .guestbook-item {
    padding: 14px 14px;
  }
}

@media (max-width: 520px) {
  .title-row {
    display: grid;
    grid-template-columns: 68px 1fr 68px;
    align-items: center;
  }

  .title-photo {
    width: 68px;
    height: 68px;
  }

  h1 {
    font-size: 2rem;
  }

  .section-header h2,
  .likes-title,
  .support-title,
  .guestbook-title,
  .facts-title {
    font-size: 1.7rem;
  }

  .info-block h3,
  .stream-card h3 {
    font-size: 1.35rem;
  }

  .local-inline-info {
    line-height: 1.55;
  }
}

@media (prefers-reduced-motion: reduce) {
  .floaty,
  .carousel-btn,
  .like-btn,
  .tikkie-btn,
  .message-btn,
  .fact-btn,
  .back-btn {
    animation: none !important;
    transition: none !important;
  }
}


/* =============================================================================
   VOER.HTML HELPERS
============================================================================= */

.mt-28 {
  margin-top: 28px;
}

.text-center {
  text-align: center;
}

.feed-info-box {
  max-width: 920px;
  margin: 0 auto;
  padding: 36px 28px;
  border-radius: 28px;
  border: 1px dashed #f0c9ef;
  background: rgba(255,255,255,0.18);
  text-align: center;
}

.feed-stream-wrap {
  max-width: 760px;
  margin: 30px auto;
}

.feed-stream-frame {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 10px 28px rgba(0,0,0,0.18);
}

.primary-gradient-btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  background:
    linear-gradient(
      135deg,
      #ff8ec7,
      #d36fff
    );

  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;

  border: none;

  box-shadow:
    0 8px 24px rgba(211,111,255,0.35);
}

.feed-btn-large {
  font-size: 0.95rem;
  padding: 14px 28px;
  cursor: pointer;
}

.feed-status {
  min-height: 24px;
  font-weight: 700;
  color: #c04c91;
}

.donation-grid {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 28px;
  align-items: flex-start;
}

.donation-link {
  text-decoration: none;
  text-align: center;
  color: inherit;
}

.donation-image {
  width: 150px;
  height: 150px;
  object-fit: contain;
  object-position: center;
  background: transparent;
  border-radius: 22px;
  display: block;
}


.bottom-actions {
  padding-bottom: 28px;
  margin-bottom: 8px;
}

/* =============================================================================
   STREAM BUTTON STATES
============================================================================= */

.carousel-btn.stream-off {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
  filter: grayscale(0.25);
}

.stream-live-dot {
  margin-left: 6px;
  color: #ff3b30;
  font-size: 0.95em;
}





* =============================================================================
   Photo mail additions 20260513
============================================================================= */



.photo-mail-section {
  margin-top: 28px;
}

.photo-mail-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 18px;
  align-items: center;
}

.photo-mail-input {
  width: 100%;
  max-width: 340px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 2px solid #d9bfd3;
  font-size: 15px;
  font-family: inherit;
  text-align: center;
  background: #fff;
  color: #5d3b5d;
}

.photo-mail-input:focus {
  outline: none;
  border-color: #b46ca9;
}

.photo-send-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}


.photo-mail-section .guestbook-box {
  text-align: center;
}

.photo-mail-section .guestbook-text {
  text-align: center;
}

.photo-mail-section .guestbook-note {
  text-align: center;
}