/* =========================================================
   VARIABLES / BASE
   ========================================================= */

:root {
  --bg: #05050b;
  --panel: rgba(12, 12, 24, 0.72);
  --panel-strong: rgba(18, 18, 34, 0.88);
  --purple: #8b5cf6;
  --purple-soft: #c084fc;
  --cyan: #22d3ee;
  --green: #00ff9c;
  --text: #ffffff;
  --muted: #b9b7d9;
  --border: rgba(255, 255, 255, 0.14);
  --shadow: 0 26px 80px rgba(0,0,0,0.48), 0 0 42px rgba(139, 92, 246, 0.18);
  --space-xs: 8px;
  --space-sm: 14px;
  --space-md: 24px;
  --space-lg: 36px;
  --space-xl: 56px;
}

* {
  box-sizing: border-box;
}

body::before {
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent 78%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent 78%);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 20%, rgba(139, 92, 246, 0.32), transparent 32%),
    radial-gradient(circle at 80% 15%, rgba(34, 211, 238, 0.16), transparent 28%),
    radial-gradient(circle at 50% 90%, rgba(0, 255, 156, 0.12), transparent 30%),
    linear-gradient(135deg, #020207 0%, #090919 48%, #03030a 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent 78%);
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(139, 92, 246, 0.08), transparent);
  animation: sweep 8s linear infinite;
  pointer-events: none;
}

@keyframes sweep {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: 0.45; }
}

.video-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--purple-soft);
  text-decoration: none;
  font-weight: 800;
}

.video-link:hover {
  color: var(--cyan);
}

.video-card:hover,
.about-card:hover {
  box-shadow:
    0 0 24px rgba(139, 92, 246, 0.18),
    0 0 40px rgba(34, 211, 238, 0.08);
}

img {
  max-width: 100%;
  height: auto;
}

/* =========================================================
   GLOBAL NAVBAR - PREMIUM FINAL
   ========================================================= */

.site-navbar {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 28px auto;
  padding: 14px 18px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;

  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025)),
    rgba(12, 12, 24, 0.58);

  backdrop-filter: blur(18px);

  box-shadow:
    0 18px 60px rgba(0,0,0,0.35),
    0 0 40px rgba(139, 92, 246, 0.12),
    inset 0 0 30px rgba(255,255,255,0.03);
}

/* -------------------------
   BRAND
-------------------------- */

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  text-transform: uppercase;
}

/* Logo container */
.brand-mark {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  overflow: hidden;
  background: transparent;
  flex: 0 0 auto;
}

/* Logo image */
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  display: block;

  box-shadow:
    0 0 18px rgba(139, 92, 246, 0.5),
    0 0 34px rgba(34, 211, 238, 0.16);

  transition: transform 0.22s ease, filter 0.22s ease;
}

/* Logo hover */
.brand:hover .brand-mark img {
  transform: scale(1.05);
  filter: brightness(1.08);
}

/* Brand text */
.brand-text {
  background: linear-gradient(90deg, #ffffff, #e9d5ff 40%, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  text-shadow:
    0 0 12px rgba(139, 92, 246, 0.35),
    0 0 28px rgba(34, 211, 238, 0.15);
}

/* -------------------------
   NAV LINKS
-------------------------- */

.nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  text-decoration: none;
  color: var(--muted);

  border: 1px solid rgba(255,255,255,0.11);
  background: rgba(255,255,255,0.035);

  padding: 10px 15px;
  border-radius: 999px;

  font-weight: 800;
  font-size: 0.92rem;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

/* Hover */
.nav a:hover {
  color: var(--text);
  transform: translateY(-2px);
  border-color: rgba(192, 132, 252, 0.55);

  box-shadow: 0 0 18px rgba(139, 92, 246, 0.18);
}

/* Active link */
.nav a.active {
  color: #ffffff;

  border-color: rgba(192, 132, 252, 0.75);

  background: linear-gradient(
    135deg,
    rgba(139,92,246,0.28),
    rgba(34,211,238,0.10)
  );

  box-shadow:
    inset 0 0 18px rgba(255,255,255,0.035),
    0 0 22px rgba(139,92,246,0.22);
}

/* =========================================================
   SHARED
   ========================================================= */

.page {
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(192, 132, 252, 0.45);
  color: #ede9fe;
  background: rgba(139, 92, 246, 0.12);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px var(--green);
  animation: pulse 1.4s infinite;
}

.button:hover,
.nav a:hover,
.video-card:hover,
.about-card:hover {
  transform: translateY(-2px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.primary {
  color: #070711;
  background: linear-gradient(90deg, var(--purple-soft), var(--cyan));
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.36);
}

.secondary {
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);

  position: relative;
  overflow: hidden;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.secondary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.25),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(192, 132, 252, 0.6);
  background: rgba(139, 92, 246, 0.12);

  box-shadow:
    0 0 18px rgba(139, 92, 246, 0.2),
    0 0 32px rgba(34, 211, 238, 0.08);
}

.secondary:hover::after {
  opacity: 1;
}

.glow,
.outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.92);
  text-shadow: 0 0 26px rgba(139, 92, 246, 0.82);
}

.solid,
.gradient-text {
  background: linear-gradient(90deg, #ffffff, #c084fc 45%, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 32px rgba(34, 211, 238, 0.15);
}

/* =========================================================
   HOMEPAGE
   ========================================================= */

.home-page .page {
  min-height: calc(100vh - 134px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px 42px;
}

.home-page .shell {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: stretch;
}

.home-page .hero,
.home-page .side-card {
  border: 1px solid var(--border);
  background: var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  border-radius: 28px;
  overflow: hidden;
}

.home-page .hero {
  padding: clamp(28px, 5vw, 58px);
  position: relative;
}

.home-page .hero::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  right: -130px;
  top: -130px;
  background: radial-gradient(circle, rgba(139,92,246,0.46), transparent 68%);
  filter: blur(6px);
}

.home-page h1 {
  margin: 28px 0 12px;
  font-size: clamp(3.1rem, 9vw, 7.4rem);
  line-height: 0.86;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.home-page h1 span {
  display: block;
}

.home-page .tagline {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.65;
  margin: 0 0 28px;
}

.home-page .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 34px;
}

.home-page .stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 650px;
}

.home-page .stat {
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.045);
  border-radius: 18px;
  padding: 16px;
}

.home-page .stat strong {
  display: block;
  font-size: 1.4rem;
}

.home-page .stat span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.9rem;
}

.home-page .side-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
}

/* =========================================================
   HOMEPAGE AVATAR FIX + ANIMATION
   ========================================================= */

@keyframes avatarGlow {
  0%, 100% {
    box-shadow:
      0 0 26px rgba(139, 92, 246, 0.35),
      0 0 70px rgba(139, 92, 246, 0.22);
  }

  50% {
    box-shadow:
      0 0 34px rgba(139, 92, 246, 0.5),
      0 0 90px rgba(34, 211, 238, 0.28);
  }
}

@keyframes avatarFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.home-page .avatar-frame {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  border-radius: 50%;
  border: 1px solid rgba(192, 132, 252, 0.5);
  background:
    radial-gradient(circle at center, rgba(139, 92, 246, 0.28), transparent 54%),
    linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.015));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
  box-shadow:
    0 0 26px rgba(139, 92, 246, 0.35),
    0 0 70px rgba(139, 92, 246, 0.22);
  animation:
    avatarGlow 4.5s ease-in-out infinite,
    avatarFloat 5.5s ease-in-out infinite;
}

.home-page .avatar-frame::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(34, 211, 238, 0.18);
  box-shadow:
    0 0 22px rgba(34, 211, 238, 0.18),
    inset 0 0 28px rgba(139, 92, 246, 0.22);
  pointer-events: none;
}

.home-page .avatar-frame::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.18), transparent 66%);
  filter: blur(10px);
  z-index: -1;
  pointer-events: none;
}

.home-page .avatar-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  display: block;
  transform: scale(1.00);
  filter: drop-shadow(0 0 18px rgba(139, 92, 246, 0.38));
}

.home-page .avatar-placeholder {
  position: relative;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.36);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 0 42px rgba(139, 92, 246, 0.45);
  font-size: 4.2rem;
}

.home-page .avatar-note {
  position: absolute;
  bottom: -42px;
  left: 0;
  right: 0;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.home-page .coming-list {
  margin-top: 34px;
}

.home-page .coming-list h2 {
  margin: 0 0 14px;
  font-size: 1.35rem;
}

.home-page .coming-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 11px;
}

.home-page .coming-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--muted);
}

.home-page .tick {
  color: var(--green);
  text-shadow: 0 0 12px rgba(0,255,156,0.7);
  font-weight: bold;
}

.home-page .socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.home-page .socials a {
  flex: 1;
  min-width: 100px;
  text-align: center;
  color: var(--text);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 800;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.home-page .socials a:hover {
  transform: translateY(-2px);
  color: var(--text);
  border-color: rgba(192, 132, 252, 0.65);
  background: rgba(139, 92, 246, 0.12);
  box-shadow:
    0 0 18px rgba(139, 92, 246, 0.22),
    0 0 34px rgba(34, 211, 238, 0.08);
}

/* =========================================================
   VIDEOS PAGE
   ========================================================= */

.videos-page .page {
  display: block;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 54px;
}

.videos-page .hero {
  position: relative;
  border: 1px solid var(--border);
  background: var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  border-radius: 28px;
  overflow: hidden;
  padding: clamp(26px, 5vw, 54px);
  margin-bottom: var(--space-md);
}

.videos-page .hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -170px;
  top: -190px;
  background: radial-gradient(circle, rgba(139,92,246,0.46), transparent 68%);
  filter: blur(6px);
}

.videos-page .hero-content {
  position: relative;
  max-width: 820px;
  overflow: visible;
}

.videos-page h1 {
  display: block;
  width: fit-content;
  max-width: 100%;

  margin: 28px 0 12px;

  font-size: clamp(3rem, 8vw, 6.7rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  text-transform: uppercase;

  padding-bottom: 6px;

  overflow: visible;
}

@keyframes gradientSweep {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* IMPORTANT: target the gradient word only */
.videos-page h1 .gradient-text {
  display: inline-block;

  /* Fix clipping on final letter */
  padding-right: 0.5em;
  margin-right: -0.5em;

  /* Animated gradient */
  background: linear-gradient(
    90deg,
    #ffffff,
    #c084fc,
    #22d3ee,
    #c084fc,
    #ffffff
  );

  background-size: 220% 100%;
  background-position: 0% 50%;

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  /* Subtle glow */
  text-shadow: 0 0 32px rgba(34, 211, 238, 0.15);

  /* Animation */
  animation: gradientSweep 6s ease-in-out infinite;
}

.videos-page .hero-content {
  overflow: visible;
}

.videos-page .intro {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
  line-height: 1.65;
  margin: 0;
  max-width: 700px;
}

.videos-page .featured {
  display: grid;
  grid-template-columns: 1.45fr 0.75fr;
  gap: 24px;
  margin-bottom: var(--space-md);
}

.videos-page .video-panel,
.videos-page .queue-panel,
.videos-page .video-card,
.videos-page .subscribe-strip {
  border: 1px solid var(--border);
  background: var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  border-radius: 24px;
  overflow: hidden;
}

.videos-page .video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(circle at center, rgba(139, 92, 246, 0.28), transparent 42%),
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
}

.videos-page .video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.videos-page .video-info,
.videos-page .queue-panel {
  padding: 22px;
}

.videos-page .eyebrow {
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: var(--space-xs);
}

.videos-page h2,
.videos-page h3 {
  margin: 0;
}

.videos-page .video-info h2 {
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  letter-spacing: -0.04em;
  margin-bottom: var(--space-sm);
}

.videos-page .video-info p,
.videos-page .queue-panel p,
.videos-page .video-card p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.videos-page .button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.videos-page .queue-panel h2 {
  font-size: 1.35rem;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.03em;
}

.videos-page .queue-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.videos-page .queue-item {
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.045);
  border-radius: 16px;
}

.videos-page .queue-item strong {
  display: block;
  margin-bottom: var(--space-xs);
}

.videos-page .queue-item span {
  color: var(--muted);
  font-size: 0.92rem;
}

.videos-page .section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin: 34px 0 16px;
}

.videos-page .section-title h2 {
  font-size: clamp(1.8rem, 4vw, 3.1rem);
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.videos-page .section-title p {
  color: var(--muted);
  margin: 0;
  max-width: 430px;
  line-height: 1.55;
}

.videos-page .video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.videos-page .video-card {
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.videos-page .video-card:hover {
  transform: translateY(-4px);
  border-color: rgba(192, 132, 252, 0.55);
  
   box-shadow:
    0 0 30px rgba(139, 92, 246, 0.18),
    0 0 60px rgba(34, 211, 238, 0.08);
}

.videos-page .thumb {
  aspect-ratio: 16 / 9;
  position: relative;
  display: block;
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.34), rgba(34, 211, 238, 0.16)),
    rgba(255,255,255,0.04);
  overflow: hidden;
}

.videos-page .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.videos-page .card-content {
  padding: 18px;
}

.videos-page .meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: var(--space-sm);
}

.videos-page .meta span {
  color: #ede9fe;
  background: rgba(139, 92, 246, 0.13);
  border: 1px solid rgba(192, 132, 252, 0.24);
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 0.78rem;
  font-weight: 800;
}

.video-card:hover .meta span {
  background: rgba(139, 92, 246, 0.18);
  border-color: rgba(139, 92, 246, 0.45);
}

.videos-page .subscribe-strip {
  margin-top: 28px;
  border: 1px solid rgba(192, 132, 252, 0.28);
  background:
    linear-gradient(90deg, rgba(139, 92, 246, 0.18), rgba(34, 211, 238, 0.09)),
    var(--panel-strong);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.videos-page .subscribe-strip h2 {
  font-size: 1.55rem;
  letter-spacing: -0.04em;
  margin-bottom: var(--space-xs);
}

.videos-page .subscribe-strip p {
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.video-card h3 {
  transition: color 0.2s ease;
}

.video-card:hover h3 {
  color: var(--cyan);
}

.video-card:hover .youtube-play {
  transform: translate(-50%, -50%) scale(1.06);
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 34px;
  color: var(--muted);
}

.footer-inner {
  border: 1px solid var(--border);
  background: var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  border-radius: 24px;
  padding: 24px;
  display: grid;
  grid-template-columns: 1.3fr auto;
  gap: 20px;
  align-items: center;
}

.footer-brand strong {
  display: block;
  color: var(--text);
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.footer-brand p {
  margin: 6px 0 0;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--text);
  border-color: rgba(192, 132, 252, 0.65);
  box-shadow: 0 0 18px rgba(139, 92, 246, 0.18);
}

.footer-copy {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 920px) {
  .videos-page .featured,
  .videos-page .video-grid {
    grid-template-columns: 1fr;
  }

  .videos-page .section-title,
  .videos-page .subscribe-strip,
  .site-navbar {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 860px) {
  .home-page .shell {
    grid-template-columns: 1fr;
  }

  .home-page .stats {
    grid-template-columns: 1fr;
  }

  .home-page .avatar-frame {
    max-width: 300px;
  }
}

@media (max-width: 560px) {
  .site-navbar,
  .videos-page .page {
    width: min(100% - 22px, 1180px);
  }

  .videos-page .hero,
  .videos-page .video-panel,
  .videos-page .queue-panel,
  .videos-page .video-card,
  .videos-page .subscribe-strip {
    border-radius: 20px;
  }

  .videos-page .button,
  .videos-page .button-row a {
    width: 100%;
  }

  .nav {
    width: 100%;
  }

  .nav a {
    flex: 1;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .home-page .page {
    padding: 0 12px 18px;
  }

  .home-page .hero,
  .home-page .side-card {
    border-radius: 22px;
  }

  .home-page .actions,
  .home-page .socials {
    flex-direction: column;
  }

  .home-page .button {
    width: 100%;
  }

  .home-page .avatar-frame {
    max-width: 260px;
  }
}

@media (max-width: 720px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}




.youtube-lite {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  cursor: pointer;
  background: rgba(255,255,255,0.04);
}

.youtube-lite img,
.youtube-lite iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.youtube-lite img {
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.video-card:hover .youtube-lite img {
  transform: scale(1.05);
  filter: brightness(1.08);
}

.youtube-lite:hover img {
  transform: scale(1.04);
  filter: brightness(1.08);
}

.youtube-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  width: 80px;
  height: 80px;

  border: none;
  border-radius: 50%;
  padding: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  /* Remove default styles */
  background: linear-gradient(135deg, var(--purple-soft), var(--cyan));
  color: #070711;

  font-size: 0; /* Hide text */
  
  box-shadow:
    0 0 30px rgba(139, 92, 246, 0.5),
    0 0 60px rgba(34, 211, 238, 0.2);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.youtube-play::before {
  content: "";
  width: 0;
  height: 0;

  border-left: 20px solid #070711;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;

  margin-left: 4px; /* optical centering */
}

.youtube-lite:hover .youtube-play {
  transform: translate(-50%, -50%) scale(1.08);

  box-shadow:
    0 0 40px rgba(139, 92, 246, 0.65),
    0 0 80px rgba(34, 211, 238, 0.3);
}

.youtube-lite.is-loaded {
  cursor: default;
}



body.privacy-page .page,
body.about-page .page,
body.contact-page .page,
body.terms-page .page,
body.cookies-page .page,
.page.privacy-page,
.page.about-page,
.page.contact-page,
.page.terms-page,
.page.cookies-page {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 60px;
}



/* =========================================================
   PRIVACY PAGE
   ========================================================= */

.policy-container {
  border: 1px solid var(--border);
  background: var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  border-radius: 28px;
  padding: clamp(24px, 5vw, 40px);
}

.privacy-page h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  margin: 0 0 10px;
  letter-spacing: -0.04em;
}

.last-updated {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
}

.privacy-page h2 {
  margin-top: 28px;
  margin-bottom: var(--space-sm);
  font-size: 1.3rem;
  color: var(--purple-soft);
}

.privacy-page p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.privacy-page ul {
  margin: 0 0 16px 20px;
  color: var(--muted);
}

.privacy-page li {
  margin-bottom: var(--space-xs);
}


/* =========================================================
   ABOUT PAGE
   ========================================================= */

.about-hero,
.about-card,
.about-panel {
  border: 1px solid var(--border);
  background: var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  border-radius: 28px;
}

.about-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(32px, 6vw, 58px);
  margin-bottom: var(--space-md);
}

.about-hero::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  right: -150px;
  top: -160px;
  background: radial-gradient(circle, rgba(139,92,246,0.46), transparent 68%);
  filter: blur(6px);
}

.about-hero > div {
  position: relative;
  z-index: 1;
}

.about-page h1 {
  margin: 26px 0 16px;
  font-size: clamp(3rem, 8vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.about-page h1 span {
  display: block;
}

.about-intro {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
  line-height: 1.65;
  margin: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: var(--space-md);
}

.about-card {
  padding: 24px;
}

.about-card h2,
.about-panel h2 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.about-card p,
.about-panel p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.about-panel {
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.about-panel p {
  max-width: 680px;
}

@media (max-width: 920px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* =========================================================
   CONTACT PAGE
   ========================================================= */

.contact-panel {
  border: 1px solid var(--border);
  background: var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  border-radius: 28px;
  padding: clamp(24px, 5vw, 46px);
}

.contact-intro h1 {
  margin: 28px 0 16px;
  font-size: clamp(3rem, 8vw, 5.8rem);
  line-height: 1.02;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.contact-intro h1 span {
  display: inline-block;
}

.contact-intro p {
  max-width: 760px;
  white-space: normal;
  text-wrap: balance;
}

.contact-form {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.055);
  color: var(--text);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(192, 132, 252, 0.75);
  box-shadow: 0 0 22px rgba(139, 92, 246, 0.22);
}

.contact-form textarea {
  resize: vertical;
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.form-message {
  margin-top: 24px;
  border-radius: 16px;
  padding: 14px 16px;
}

.form-message p {
  margin: 0;
}

.form-message.success {
  border: 1px solid rgba(0,255,156,0.35);
  background: rgba(0,255,156,0.08);
  color: #d1fae5;
}

.form-message.error {
  border: 1px solid rgba(248,113,113,0.35);
  background: rgba(248,113,113,0.08);
  color: #fecaca;
}



.turnstile-wrap {
  margin: 4px 0 2px;
}




/* =========================================================
   COOKIE BANNER
   ========================================================= */

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 9999;
  width: min(1180px, calc(100% - 32px));
}

.cookie-banner-inner {
  border: 1px solid var(--border);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025)),
    rgba(12, 12, 24, 0.92);
  backdrop-filter: blur(18px);
  box-shadow:
    0 18px 60px rgba(0,0,0,0.45),
    0 0 40px rgba(139, 92, 246, 0.18);
  border-radius: 24px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cookie-banner strong {
  display: block;
  color: var(--text);
  margin-bottom: 6px;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex: 0 0 auto;
}

@media (max-width: 720px) {
  .cookie-banner-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .cookie-actions,
  .cookie-actions .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}