:root {
  --bg: #030a1b;
  --text: #edf4ff;
  --muted: #a2b7d8;
  --line: rgba(151, 191, 255, 0.24);
  --glass: rgba(7, 17, 39, 0.30);
  --accent: #5ec8ff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  position: relative;
  min-height: 100dvh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background-image: linear-gradient(160deg, rgba(3, 10, 27, 0.68), rgba(3, 10, 27, 0.46)), url("Branding/background.png");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

#nebula-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  pointer-events: none;
}

.header-shell {
  width: min(1120px, calc(100% - 2rem));
  margin: 1rem auto;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--glass);
  backdrop-filter: blur(12px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.9rem;
  padding: 0.75rem 1rem;
  position: sticky;
  top: 0.6rem;
  z-index: 12;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text);
  font-family: "Syne", sans-serif;
  font-size: 1.02rem;
}

.logo img {
  width: 120px;
  height: auto;
}

.header-nav {
  justify-self: center;
  display: inline-flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.header-nav a,
.accounts {
  text-decoration: none;
  color: var(--muted);
  padding: 0.72rem 1.1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all 180ms ease;
  font-size: 1.1rem;
  font-weight: 500;
}

.header-nav a:hover,
.accounts:hover {
  color: var(--text);
  border-color: var(--line);
  background: rgba(96, 139, 255, 0.16);
}

.header-nav a[aria-current="page"] {
  color: var(--text);
  border-color: var(--line);
  background: rgba(96, 139, 255, 0.2);
}

.accounts {
  display: inline-flex;
  align-items: center;
  gap: 0.36rem;
  border-left: 1px solid rgba(162, 183, 216, 0.32);
  border-radius: 0;
}

.accounts svg {
  width: 18px;
  height: 18px;
}


.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.45rem;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  margin: 3px 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

main {
  width: min(1120px, calc(100% - 2rem));
  margin: 1.4rem auto 1.6rem;
}

.streams-main {
  display: grid;
  gap: 0.9rem;
}

.streams-hero {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 1rem;
  padding: clamp(1.2rem, 4vw, 2rem);
}

.streams-hero-logo {
  display: block;
  width: min(220px, 58vw);
  height: auto;
  padding: 0.42rem 0.76rem;
  margin: 0.65rem 0 0.25rem;
  border-radius: 14px;
  border: 1px solid rgba(140, 255, 190, 0.34);
  background: linear-gradient(140deg, rgba(124, 255, 176, 0.24), rgba(111, 240, 255, 0.14));
  box-shadow:
    inset 0 0 0 1px rgba(191, 255, 218, 0.16),
    0 9px 20px rgba(5, 18, 36, 0.34);
  filter: drop-shadow(0 6px 16px rgba(4, 14, 34, 0.45));
}

.sort-panel {
  display: grid;
  align-content: start;
  gap: 0.55rem;
  border: 1px solid rgba(151, 191, 255, 0.28);
  border-radius: 16px;
  background: rgba(3, 13, 32, 0.6);
  padding: 0.9rem;
}

.sort-panel label {
  font-size: 0.82rem;
  color: #8cd7ff;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.sort-panel select {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.64rem 0.72rem;
  background: rgba(7, 17, 39, 0.9);
  color: var(--text);
  font: 500 1rem/1 "Outfit", sans-serif;
}

.sort-panel p {
  margin: 0.1rem 0 0;
  color: var(--muted);
}

.sort-panel.is-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 92px;
}

.sort-panel.is-empty label,
.sort-panel.is-empty select {
  display: none;
}

.sort-panel.is-empty p {
  margin: 0;
  color: #d6eeff;
  font-weight: 600;
}

.video-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.video-placeholder {
  grid-column: 1 / -1;
  min-height: 180px;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  border-style: dashed;
  border-color: rgba(151, 191, 255, 0.32);
  background: linear-gradient(165deg, rgba(8, 20, 48, 0.64), rgba(8, 16, 35, 0.58));
  text-align: center;
}

.video-placeholder p {
  margin: 0;
  color: #d6eeff;
  font-size: 1.02rem;
}

.video-card {
  overflow: hidden;
}

.video-embed-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  border-bottom: 1px solid rgba(151, 191, 255, 0.2);
}

.video-embed-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #020814;
}

.video-meta {
  padding: 0.9rem;
}

.video-meta h2 {
  margin: 0;
  font-size: 1.1rem;
}

.video-meta p {
  margin: 0.55rem 0;
  color: var(--muted);
}

.video-meta a {
  color: #8cd7ff;
  text-decoration: none;
  font-weight: 500;
}

.video-meta a:hover {
  color: var(--text);
}

.watch-profile-layout {
  display: grid;
  grid-template-columns: 1fr;
}

.kick-profile-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(107, 244, 153, 0.34);
  background:
    radial-gradient(1200px 260px at 88% -28%, rgba(132, 255, 158, 0.18), transparent 62%),
    linear-gradient(165deg, rgba(8, 33, 25, 0.86), rgba(7, 22, 46, 0.68));
  box-shadow:
    inset 0 0 0 1px rgba(136, 255, 177, 0.12),
    0 18px 36px rgba(6, 22, 20, 0.38);
}

.kick-profile-logo {
  width: 104px;
  height: auto;
  display: block;
  margin-bottom: 0.82rem;
  border-radius: 9px;
  border: 1px solid rgba(144, 255, 182, 0.36);
  box-shadow: 0 7px 16px rgba(7, 20, 17, 0.4);
}

.kick-profile-card .kick-profile-head {
  display: flex;
  align-items: center;
  gap: 0.82rem;
}

.kick-profile-meta {
  min-width: 0;
  flex: 1;
}

.kick-profile-meta h2 {
  margin: 0;
  color: #e9fff1;
  font-size: 1.35rem;
}

.kick-follow-btn {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.45rem 0.92rem;
  border-radius: 999px;
  border: 1px solid rgba(156, 255, 122, 0.72);
  background: linear-gradient(135deg, #67f62b, #95ff56);
  color: #0a170f;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow:
    inset 0 1px 0 rgba(236, 255, 231, 0.62),
    0 8px 18px rgba(53, 169, 66, 0.38);
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.kick-follow-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow:
    inset 0 1px 0 rgba(236, 255, 231, 0.72),
    0 10px 20px rgba(53, 169, 66, 0.44);
}

.kick-profile-card .profile-avatar {
  border-color: rgba(123, 255, 176, 0.5);
  background: linear-gradient(140deg, rgba(52, 194, 111, 0.34), rgba(66, 218, 255, 0.2));
}

.kick-profile-card .profile-handle {
  color: #8ff5bc;
}

.kick-profile-card .profile-copy {
  color: #d2ffe0;
}

.kick-profile-card .btn.primary {
  color: #e9fff1;
  border: 1px solid rgba(123, 255, 176, 0.4);
  background: linear-gradient(135deg, rgba(23, 82, 48, 0.9), rgba(10, 40, 31, 0.92));
}

.kick-profile-card .btn.primary:hover {
  border-color: rgba(159, 255, 198, 0.62);
  background: linear-gradient(135deg, rgba(29, 97, 57, 0.92), rgba(12, 46, 35, 0.94));
}

.glass {
  border: 1px solid var(--line);
  border-radius: 24px;
  backdrop-filter: blur(12px);
  background: var(--glass);
}

.hero-grid {
  display: flex;
  flex-direction: column;
  padding: clamp(1.2rem, 4vw, 2.5rem);
}

.hero-content {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 1rem;
}

.hero-grid .social-links {
  margin-top: 1.5rem;
  width: min(220px, 100%);
  justify-self: center;
}

.label {
  margin: 0;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: #8cd7ff;
}

h1,
h2,
h3 {
  font-family: "Syne", sans-serif;
}

h1 {
  margin: 0.8rem 0;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.04;
  max-width: 15ch;
}

.copy {
  color: var(--muted);
  max-width: 55ch;
}

.hero-actions {
  margin-top: 1.1rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  padding: 0.7rem 1rem;
  border-radius: 12px;
  font-weight: 600;
}

.btn.primary {
  color: #021426;
  background: linear-gradient(135deg, var(--accent), #9ce6ff);
}

.btn.ghost {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(85, 130, 255, 0.16);
}

.pulse-card {
  border: 1px solid rgba(151, 191, 255, 0.3);
  border-radius: 18px;
  padding: 1rem;
  background: rgba(3, 13, 32, 0.62);
}

.pulse-card h2 {
  margin: 0;
  font-size: 1.1rem;
}

.pulse-card p {
  margin: 0.4rem 0;
  color: var(--muted);
}

.pulse-card strong {
  font: 700 clamp(1.8rem, 5vw, 2.4rem) / 1 "Syne", sans-serif;
}

.mini-bars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.3rem;
  margin-top: 0.8rem;
  align-items: end;
  height: 42px;
}

.mini-bars span {
  display: block;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(to top, #3a82ff, #81dcff);
  animation: bounce 1.8s ease-in-out infinite;
}

.mini-bars span:nth-child(1) { height: 46%; animation-delay: 0s; }
.mini-bars span:nth-child(2) { height: 80%; animation-delay: 0.15s; }
.mini-bars span:nth-child(3) { height: 58%; animation-delay: 0.3s; }
.mini-bars span:nth-child(4) { height: 92%; animation-delay: 0.45s; }
.mini-bars span:nth-child(5) { height: 70%; animation-delay: 0.6s; }

@keyframes bounce {
  0%,
  100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

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

.card-grid article {
  padding: 1rem;
}

.card-grid h3 {
  margin: 0;
}

.card-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.social-links {
  margin-top: 0.65rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.45rem;
}

.social-links a {
  display: grid;
  place-items: center;
  text-decoration: none;
  color: var(--text);
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  border: 1px solid rgba(151, 191, 255, 0.28);
  background: linear-gradient(145deg, rgba(58, 119, 255, 0.44), rgba(83, 214, 255, 0.24));
  box-shadow: inset 0 0 0 1px rgba(155, 220, 255, 0.2), 0 6px 16px rgba(8, 22, 52, 0.3);
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.social-links a:hover {
  border-color: rgba(151, 191, 255, 0.56);
  background: linear-gradient(145deg, rgba(74, 140, 255, 0.5), rgba(109, 228, 255, 0.3));
  box-shadow: inset 0 0 0 1px rgba(188, 234, 255, 0.28), 0 8px 18px rgba(8, 22, 52, 0.36);
  transform: translateY(-2px);
}

.social-btn.instagram {
  background: linear-gradient(145deg, rgba(68, 132, 255, 0.5), rgba(121, 192, 255, 0.26));
}

.social-btn.x {
  background: linear-gradient(145deg, rgba(38, 85, 191, 0.52), rgba(83, 162, 255, 0.26));
}

.social-btn.kick {
  background: linear-gradient(145deg, rgba(60, 125, 242, 0.5), rgba(79, 214, 255, 0.24));
}

.social-btn.rumble {
  background: linear-gradient(145deg, rgba(52, 108, 220, 0.5), rgba(104, 228, 255, 0.24));
}

.social-links svg {
  width: 80%;
  height: 80%;
  color: #d9f1ff;
}

.social-image {
  width: 74%;
  height: 74%;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(5, 14, 33, 0.45));
}

.social-image-rumble {
  width: 90%;
  height: auto;
  max-height: 70%;
}

.posts-main {
  display: grid;
  gap: 0.9rem;
}

.posts-hero {
  padding: clamp(1.2rem, 4vw, 2.2rem);
}

.posts-hero h1 {
  max-width: 17ch;
}

.posts-actions {
  margin-top: 1rem;
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.posts-profile-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.posts-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.posts-layout .rss-card {
  width: 100%;
}

.profile-card,
.rss-card {
  padding: 1.1rem;
}

.profile-card h2,
.rss-card h2 {
  margin: 0;
  font-size: 1.3rem;
}

.profile-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.75rem;
  padding: 0.32rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(151, 191, 255, 0.42);
  background: rgba(52, 122, 255, 0.2);
  color: #cce8ff;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.profile-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.x-profile-head {
  display: flex;
  align-items: center;
}

.x-profile-meta {
  min-width: 0;
  flex: 1;
}

.x-follow-btn {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(173, 214, 255, 0.45);
  background: linear-gradient(145deg, rgba(9, 13, 22, 0.95), rgba(25, 36, 56, 0.9));
  color: #eef7ff;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  box-shadow:
    inset 0 0 0 1px rgba(220, 238, 255, 0.14),
    0 8px 18px rgba(3, 10, 25, 0.36);
  transition: transform 180ms ease, border-color 180ms ease, filter 180ms ease;
}

.x-follow-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(194, 228, 255, 0.66);
  filter: brightness(1.06);
}

.instagram-profile-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(255, 154, 120, 0.34);
  background:
    radial-gradient(1100px 250px at 86% -20%, rgba(255, 173, 109, 0.2), transparent 62%),
    linear-gradient(165deg, rgba(53, 16, 64, 0.86), rgba(27, 20, 72, 0.7));
  box-shadow:
    inset 0 0 0 1px rgba(255, 193, 145, 0.12),
    0 18px 36px rgba(32, 14, 52, 0.4);
}

.instagram-profile-logo {
  width: 104px;
  height: auto;
  display: block;
  margin-bottom: 0.82rem;
  box-shadow: 0 7px 16px rgba(25, 8, 39, 0.44);
}

.instagram-profile-head {
  display: flex;
  align-items: center;
  gap: 0.82rem;
}

.instagram-profile-meta {
  min-width: 0;
  flex: 1;
}

.instagram-profile-meta h2 {
  margin: 0;
  color: #ffe9f8;
  font-size: 1.35rem;
}

.instagram-follow-btn {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.45rem 0.92rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 200, 165, 0.62);
  background: linear-gradient(135deg, #ff804c, #ff4da0 48%, #9c5dff);
  color: #ffffff;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow:
    inset 0 1px 0 rgba(255, 231, 210, 0.48),
    0 9px 20px rgba(186, 68, 128, 0.42);
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.instagram-follow-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow:
    inset 0 1px 0 rgba(255, 236, 219, 0.62),
    0 11px 22px rgba(186, 68, 128, 0.5);
}

.instagram-profile-card .profile-avatar {
  border-color: rgba(255, 187, 157, 0.5);
  background: linear-gradient(140deg, rgba(255, 140, 96, 0.35), rgba(175, 102, 255, 0.25));
}

.instagram-profile-card .profile-handle {
  color: #ffbfdb;
}

.instagram-profile-card .profile-copy {
  color: #ffe2f4;
}

.instagram-profile-card .btn.primary {
  color: #fff4fb;
  border: 1px solid rgba(255, 185, 146, 0.44);
  background: linear-gradient(135deg, rgba(120, 45, 114, 0.9), rgba(78, 33, 128, 0.92));
}

.instagram-profile-card .btn.primary:hover {
  border-color: rgba(255, 206, 170, 0.6);
  background: linear-gradient(135deg, rgba(136, 53, 128, 0.92), rgba(90, 39, 143, 0.94));
}

.profile-avatar {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  overflow: hidden;
  font-family: "Syne", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  background: linear-gradient(140deg, rgba(83, 150, 255, 0.26), rgba(112, 229, 255, 0.16));
  border: 1px solid rgba(160, 202, 255, 0.44);
  color: #e9f8ff;
}

.profile-avatar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.profile-handle {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  overflow-wrap: anywhere;
}

.profile-copy {
  margin: 0.85rem 0 0;
  color: #d7ebff;
}

.profile-actions {
  margin-top: 0.9rem;
  display: flex;
  gap: 0.62rem;
  flex-wrap: wrap;
}

.profile-note {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto 1.4rem;
}

.site-footer-shell {
  display: grid;
  gap: 0.75rem;
  border-radius: 18px;
  border: 1px solid rgba(151, 191, 255, 0.26);
  padding: 0.85rem 1rem;
}

.site-footer-credit {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer-credit a {
  color: #d5eeff;
  text-decoration: none;
  border-bottom: 1px dotted rgba(184, 221, 255, 0.52);
}

.site-footer-credit a:hover {
  color: #ffffff;
}

.rss-card {
  border-color: rgba(113, 181, 255, 0.34);
  background: linear-gradient(165deg, rgba(8, 20, 48, 0.84), rgba(10, 31, 72, 0.58));
}

.rss-label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.75rem;
  padding: 0.32rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(151, 191, 255, 0.42);
  background: rgba(52, 122, 255, 0.2);
  color: #cce8ff;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.rss-list {
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.rss-list li {
  border: 1px solid rgba(151, 191, 255, 0.22);
  border-radius: 12px;
  background: rgba(8, 23, 53, 0.55);
}

.rss-list a {
  display: block;
  text-decoration: none;
  color: #d8efff;
  font-weight: 500;
  padding: 0.72rem 0.8rem 0.45rem;
}

.rss-list a:hover {
  color: #ffffff;
}

.rss-list time {
  display: block;
  padding: 0 0.8rem 0.72rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.rss-source {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.83rem;
}

.rss-source a {
  color: #8cd7ff;
}

.donate-main {
  display: grid;
  gap: 0.9rem;
}

.donate-hero {
  padding: clamp(1.2rem, 4vw, 2.2rem);
}

.donate-hero h1 {
  max-width: 16ch;
}

.donate-subcopy {
  margin: 1rem 0 0;
  font-size: 1.03rem;
  color: #d5ecff;
}

.donate-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0.9rem;
}

.donate-notes,
.paypal-card {
  padding: 1.1rem;
}

.donate-notes h2,
.paypal-card h2 {
  margin: 0;
  font-size: 1.3rem;
}

.support-points {
  margin: 0.85rem 0 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.52rem;
  color: var(--muted);
}

.support-points li::marker {
  color: #8cd7ff;
}

.paypal-card {
  border-color: rgba(113, 181, 255, 0.34);
  background: linear-gradient(165deg, rgba(8, 20, 48, 0.84), rgba(10, 31, 72, 0.58));
}

.paypal-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.75rem;
  padding: 0.32rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(151, 191, 255, 0.42);
  background: rgba(52, 122, 255, 0.2);
  color: #cce8ff;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.paypal-copy {
  margin: 0.5rem 0 1rem;
  color: var(--muted);
}

.paypal-actions {
  display: grid;
  gap: 0.8rem;
}

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

.amount-grid a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 2.45rem;
  text-decoration: none;
  color: #d8efff;
  border-radius: 12px;
  border: 1px solid rgba(151, 191, 255, 0.33);
  background: linear-gradient(145deg, rgba(42, 104, 236, 0.38), rgba(72, 197, 255, 0.2));
  font-weight: 600;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.amount-grid a:hover {
  border-color: rgba(180, 221, 255, 0.6);
  background: linear-gradient(145deg, rgba(59, 124, 255, 0.42), rgba(88, 213, 255, 0.24));
  transform: translateY(-1px);
}

.exclusive-main {
  display: grid;
  gap: 0.9rem;
}

.exclusive-hero {
  padding: clamp(1.2rem, 4vw, 2.2rem);
}

.exclusive-hero h1 {
  max-width: 18ch;
}

.exclusive-subcopy {
  margin: 1rem 0 0;
  font-size: 1.03rem;
  color: #d5ecff;
}

.exclusive-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0.9rem;
}

.exclusive-overview,
.membership-card {
  padding: 1.1rem;
}

.exclusive-overview h2,
.membership-card h2 {
  margin: 0;
  font-size: 1.3rem;
}

.exclusive-points {
  margin: 0.85rem 0 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.52rem;
  color: var(--muted);
}

.exclusive-points li::marker {
  color: #8cd7ff;
}

.exclusive-note {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.membership-card {
  border-color: rgba(121, 198, 255, 0.34);
  background: linear-gradient(165deg, rgba(8, 26, 56, 0.84), rgba(8, 20, 44, 0.62));
}

.membership-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.75rem;
  padding: 0.32rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(151, 191, 255, 0.42);
  background: rgba(52, 122, 255, 0.2);
  color: #cce8ff;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.membership-copy {
  margin: 0.5rem 0 1rem;
  color: var(--muted);
}

.membership-actions {
  display: grid;
  gap: 0.8rem;
}

.membership-note {
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 0.83rem;
}

.accounts-main {
  display: grid;
  gap: 0.9rem;
}

.accounts-hero {
  padding: clamp(1.2rem, 4vw, 2.2rem);
}

.accounts-hero h1 {
  max-width: 18ch;
}

.accounts-note {
  margin: 1rem 0 0;
  font-size: 1.03rem;
  color: #d5ecff;
}

.accounts-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 0.9rem;
}

.accounts-actions {
  display: grid;
}

.account-panel {
  padding: 1.1rem;
}

.account-panel h2 {
  margin: 0;
  font-size: 1.3rem;
}

.account-lookup-form {
  margin-top: 0.85rem;
  display: grid;
  gap: 0.6rem;
}

.account-lookup-form label {
  color: #8cd7ff;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.account-lookup-form input {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(7, 17, 39, 0.9);
  color: var(--text);
  padding: 0.68rem 0.72rem;
  font: 500 1rem/1.1 "Outfit", sans-serif;
}

.account-lookup-form input:focus {
  outline: none;
  border-color: rgba(145, 207, 255, 0.72);
  box-shadow: 0 0 0 2px rgba(84, 175, 255, 0.2);
}

.account-helper {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.account-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.82rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.32rem 0.66rem;
  border-radius: 999px;
  border: 1px solid rgba(151, 191, 255, 0.42);
  background: rgba(52, 122, 255, 0.2);
  color: #cce8ff;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-pill[data-tone="success"] {
  border-color: rgba(132, 255, 175, 0.52);
  background: rgba(44, 170, 108, 0.28);
  color: #d6ffe6;
}

.status-pill[data-tone="error"] {
  border-color: rgba(255, 165, 165, 0.56);
  background: rgba(184, 46, 46, 0.3);
  color: #ffe0e0;
}

.account-facts {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.account-facts div {
  margin: 0;
  padding: 0.62rem 0.7rem;
  border-radius: 12px;
  border: 1px solid rgba(151, 191, 255, 0.24);
  background: rgba(8, 17, 37, 0.52);
}

.account-facts dt {
  margin: 0;
  color: #8cd7ff;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.account-facts dd {
  margin: 0.38rem 0 0;
  color: #e6f3ff;
  font-size: 0.98rem;
  font-weight: 500;
  word-break: break-word;
}

.account-buttons {
  margin-top: 0.8rem;
  display: flex;
  gap: 0.62rem;
  flex-wrap: wrap;
}

.account-buttons .btn {
  border: 1px solid transparent;
  cursor: pointer;
  font: inherit;
}

.account-buttons .btn.ghost {
  border-color: var(--line);
}

.account-buttons .btn:disabled,
.account-lookup-form .btn:disabled {
  opacity: 0.58;
  cursor: not-allowed;
}

.token-box {
  margin-top: 0.85rem;
  border-radius: 14px;
  border: 1px dashed rgba(151, 191, 255, 0.4);
  background: rgba(8, 22, 52, 0.52);
  padding: 0.75rem;
}

.token-box p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.token-box p + p {
  margin-top: 0.5rem;
}

.token-box code {
  display: inline-block;
  padding: 0.16rem 0.3rem;
  border-radius: 6px;
  background: rgba(31, 64, 125, 0.46);
  color: #d8eeff;
  font-size: 0.82rem;
}

.token-box a {
  color: #8cd7ff;
  word-break: break-all;
}

.account-feedback-panel {
  min-height: 92px;
}

.account-message {
  margin: 0.72rem 0 0;
  color: var(--muted);
}

.account-message[data-tone="success"] {
  color: #c6ffe1;
}

.account-message[data-tone="error"] {
  color: #ffc8c8;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 400ms ease, transform 400ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 940px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .streams-hero {
    grid-template-columns: 1fr;
  }

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

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

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

  .posts-layout {
    grid-template-columns: 1fr;
  }

  .posts-profile-layout {
    grid-template-columns: 1fr;
  }

  .posts-profile-layout .profile-card,
  .watch-profile-layout .kick-profile-card {
    min-width: 0;
    position: relative;
  }

  .posts-profile-layout .profile-head,
  .watch-profile-layout .kick-profile-head {
    min-width: 0;
  }

  .posts-profile-layout .x-follow-btn,
  .posts-profile-layout .instagram-follow-btn,
  .watch-profile-layout .kick-follow-btn {
    position: absolute;
    top: 0.95rem;
    right: 0.95rem;
    margin-left: 0;
    min-height: 1.85rem;
    padding: 0.35rem 0.72rem;
    font-size: 0.72rem;
    z-index: 1;
  }

  .posts-profile-layout .profile-badge {
    margin-right: 5.5rem;
  }

  .donate-layout {
    grid-template-columns: 1fr;
  }

  .exclusive-layout {
    grid-template-columns: 1fr;
  }

  .accounts-layout {
    grid-template-columns: 1fr;
  }

  .account-facts {
    grid-template-columns: 1fr;
  }

  .header-shell {
    grid-template-columns: auto auto 1fr;
  }

  .logo {
    grid-column: 1;
    grid-row: 1;
  }

  .nav-toggle {
    display: inline-block;
    grid-column: 2;
    grid-row: 1;
  }

  .header-nav {
    display: none;
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    justify-content: center;
    padding-top: 0.35rem;
  }

  .header-nav.open {
    display: inline-flex;
  }

  .accounts {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    align-self: center;
    border-left: 0;
  }
}

@media (max-width: 700px) {
  main {
    margin: 1.2rem auto 0.8rem;
    padding-bottom: 0;
  }

  main > :last-child {
    margin-bottom: 0;
  }

  body::before {
    background-image: linear-gradient(160deg, rgba(3, 10, 27, 0.48), rgba(3, 10, 27, 0.28)), url("Branding/background-mobile.png?v=20260303-mobile-bg-force-refresh");
    background-position: top left, top center;
    background-size: 100% 100%, 100% auto;
    background-repeat: no-repeat, no-repeat;
    inset: 0;
  }

  #nebula-canvas {
    opacity: 0.7;
  }

  .account-panel-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .account-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}
