*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Primary */
  --owner-green: #088924;
  --bright-green: #0CB230;
  --deep-green: #115C1E;
  --darkest-green: #094413;

  /* Neutrals */
  --near-black: #2C2C2C;
  --white: #FFFFFF;
  --warm-white: #FBF8F5;
  --warm-cream: #F9F3ED;
  --warm-beige: #F6EEE5;
  --warm-gray: #DDD6CE;
  --warm-gray-dark: #C5BEB7;

  /* Extended */
  --sky-blue: #56AEDD;
  --deep-blue: #034F81;
  --violet: #746CCF;
  --deep-violet: #534AB2;
  --gold: #DDAD6B;
  --deep-gold: #C58A3A;

  /* Gradients */
  --gradient-green: linear-gradient(180deg, #0CB230 0%, #094413 100%);
  --gradient-blue-spectrum: linear-gradient(180deg, #56AEDD 0%, #034F81 52.9%, #335BA2 76.9%, #746CCF 100%);
  --gradient-cream-green: linear-gradient(0deg, #F9F3ED 0%, #0CB230 66.8%);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(44,44,44,0.06), 0 1px 2px rgba(44,44,44,0.04);
  --shadow-md: 0 4px 12px rgba(44,44,44,0.08), 0 2px 4px rgba(44,44,44,0.04);
  --shadow-lg: 0 12px 40px rgba(44,44,44,0.12), 0 4px 12px rgba(44,44,44,0.06);
  --shadow-hover: 0 16px 48px rgba(44,44,44,0.16), 0 6px 16px rgba(44,44,44,0.08);
}

/* ========== TYPE SCALE (Inter fallback for STK Bureau Sans) ========== */
html {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: -0.36px;
  color: var(--near-black);
  background: var(--warm-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  cursor: none;
}

@media (hover: none) {
  body { cursor: auto; }
}

.display {
  font-size: clamp(48px, 8vw, 120px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -2.4px;
}

h1, .h1 {
  font-size: clamp(36px, 5vw, 65px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.3px;
}

h2, .h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.96px;
}

h3, .h3 {
  font-size: clamp(20px, 2vw, 32px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.64px;
}

.body-large {
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
}

.caption {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
}

/* ========== SCROLL PROGRESS BAR ========== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--gradient-green);
  z-index: 9999;
  transition: none;
}

/* ========== CUSTOM CURSOR ========== */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--owner-green);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, background 0.3s ease, border 0.3s ease;
}

.cursor-dot.hovering {
  width: 48px;
  height: 48px;
  background: transparent;
  border: 2px solid var(--owner-green);
}

@media (hover: none) {
  .cursor-dot { display: none; }
}

/* ========== NOISE TEXTURE OVERLAY ========== */
.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9990;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ========== AMBIENT MOUSE LIGHT ========== */
.ambient-light {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8, 137, 36, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  mix-blend-mode: multiply;
}

@media (hover: none) {
  .ambient-light { display: none; }
}

/* ========== LAYOUT ========== */
.container {
  max-width: 1284px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== CHANNEL BANNER ========== */
.channel-banner {
  position: relative;
  width: 100%;
  aspect-ratio: 6.2 / 1;
  min-height: 180px;
  overflow: hidden;
  background: linear-gradient(135deg, #094413 0%, #0CB230 40%, #088924 60%, #094413 100%);
}

.channel-banner .banner-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(12,178,48,0.5) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(8,137,36,0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(86,174,221,0.15) 0%, transparent 40%);
}

.channel-banner .banner-stars {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.channel-banner .star-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.12;
}

.channel-banner .star-shape:nth-child(1) {
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.3);
  top: -100px; left: 5%;
}
.channel-banner .star-shape:nth-child(2) {
  width: 250px; height: 250px;
  background: rgba(12, 178, 48, 0.5);
  top: 10%; right: 10%;
}
.channel-banner .star-shape:nth-child(3) {
  width: 300px; height: 300px;
  background: rgba(86, 174, 221, 0.2);
  bottom: -80px; left: 45%;
}
.channel-banner .star-shape:nth-child(4) {
  width: 200px; height: 200px;
  background: rgba(116, 108, 207, 0.2);
  top: -30px; left: 65%;
}

.channel-banner .banner-noise {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px;
}

.channel-banner .banner-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(9, 68, 19, 0.5) 100%);
}

/* Banner Content */
.banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 5;
  gap: 6px;
}

.banner-wordmark {
  display: flex;
  align-items: baseline;
  gap: 12px;
  line-height: 1;
}

.banner-word {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.banner-word-owner {
  font-size: clamp(36px, 5.5vw, 80px);
  color: #fff;
}

.banner-word-tube {
  font-size: clamp(36px, 5.5vw, 80px);
  color: rgba(255,255,255,0.35);
}

.banner-tagline {
  font-size: clamp(11px, 1.3vw, 16px);
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}

.banner-roles-ticker {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  height: 28px;
  background: rgba(0,0,0,0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  height: 100%;
  animation: tickerScroll 20s linear infinite;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding-left: 100%;
}

.ticker-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  flex-shrink: 0;
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Banner Grid Lines (topographic feel) */
.banner-grid-lines {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.banner-grid-lines .grid-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255,255,255,0.04);
}

.banner-grid-lines .grid-line:nth-child(1) { top: 20%; }
.banner-grid-lines .grid-line:nth-child(2) { top: 40%; }
.banner-grid-lines .grid-line:nth-child(3) { top: 60%; }
.banner-grid-lines .grid-line:nth-child(4) { top: 80%; }
.banner-grid-lines .grid-line:nth-child(5) {
  top: 0; bottom: 0; left: 50%; width: 1px; height: 100%;
}

/* ========== CHANNEL INFO BAR ========== */
.channel-info {
  padding: 20px 0 16px;
  background: var(--warm-white);
  position: relative;
  z-index: 150;
}

.channel-info-inner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.channel-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--gradient-green);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 800;
  color: white;
  position: relative;
  box-shadow: 0 0 0 3px var(--warm-white), 0 0 0 5px var(--owner-green);
  animation: avatarGlow 3s ease-in-out infinite;
}

@keyframes avatarGlow {
  0%, 100% { box-shadow: 0 0 0 3px var(--warm-white), 0 0 0 5px var(--owner-green), 0 0 20px rgba(8,137,36,0.15); }
  50% { box-shadow: 0 0 0 3px var(--warm-white), 0 0 0 5px var(--bright-green), 0 0 30px rgba(12,178,48,0.25); }
}

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

.channel-name {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
  color: var(--near-black);
}

.channel-handle {
  font-size: 14px;
  color: var(--warm-gray-dark);
  margin-top: 2px;
}

.channel-stats {
  font-size: 14px;
  color: var(--warm-gray-dark);
  margin-top: 4px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.channel-stats span { white-space: nowrap; }
.channel-stats .dot { color: var(--warm-gray); }

.channel-desc {
  font-size: 14px;
  color: var(--near-black);
  margin-top: 8px;
  max-width: 600px;
  opacity: 0.7;
}

.channel-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
  padding-top: 8px;
}

.btn-subscribe {
  background: var(--owner-green);
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 24px;
  font-size: 15px;
  font-weight: 600;
  cursor: none;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.btn-subscribe::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.25s;
}

.btn-subscribe:hover {
  background: var(--bright-green);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(8,137,36,0.3);
}
.btn-subscribe:hover::before { opacity: 1; }

.btn-notify {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--warm-gray);
  background: var(--warm-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: all 0.25s ease;
  font-size: 18px;
}

.btn-notify:hover {
  border-color: var(--owner-green);
  background: rgba(8,137,36,0.05);
}

.btn-share {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--warm-gray);
  background: var(--warm-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: all 0.25s ease;
  position: relative;
}
.btn-share > svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--warm-gray-dark);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.25s;
}
.btn-share:hover {
  border-color: var(--owner-green);
  background: rgba(8,137,36,0.05);
}
.btn-share:hover > svg {
  stroke: var(--owner-green);
}

/* Share dropdown */
.share-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--warm-white);
  border: 1px solid var(--warm-gray);
  border-radius: 12px;
  padding: 6px 0;
  min-width: 200px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px) scale(0.96);
  pointer-events: none;
  transition: all 0.2s ease;
  z-index: 200;
}
.share-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: all;
}
.share-dropdown button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 16px;
  border: none;
  background: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--near-black);
  cursor: pointer;
  transition: background 0.15s;
  text-align: left;
}
.share-dropdown button:hover {
  background: rgba(8,137,36,0.06);
}
.share-dropdown button svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.share-dropdown .share-divider {
  height: 1px;
  background: var(--warm-gray);
  margin: 4px 0;
}

/* Share toast */
.share-toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--near-black);
  color: white;
  padding: 12px 24px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 9999;
}
.share-toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* CTA share button variant */
.btn-share-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: white;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 10px 20px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 500;
  cursor: none;
  transition: all 0.25s ease;
  position: relative;
}
.btn-share-cta svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: white;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.btn-share-cta:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-1px);
}
.btn-share-cta .share-dropdown {
  background: var(--near-black);
  border-color: rgba(255,255,255,0.15);
}
.btn-share-cta .share-dropdown button {
  color: white;
}
.btn-share-cta .share-dropdown button:hover {
  background: rgba(255,255,255,0.1);
}
.btn-share-cta .share-dropdown .share-divider {
  background: rgba(255,255,255,0.1);
}

/* ========== NAVIGATION TABS ========== */
.nav-tabs {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(251, 248, 245, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(221, 214, 206, 0.5);
  transition: box-shadow 0.3s ease;
}

.nav-tabs.scrolled {
  box-shadow: 0 2px 12px rgba(44,44,44,0.06);
}

.nav-tabs-inner {
  display: flex;
  gap: 0;
  position: relative;
  overflow-x: auto;
  scrollbar-width: none;
}
.nav-tabs-inner::-webkit-scrollbar { display: none; }

.nav-tab {
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--warm-gray-dark);
  cursor: none;
  border: none;
  background: none;
  white-space: nowrap;
  transition: color 0.25s ease;
  position: relative;
}

.nav-tab:hover { color: var(--near-black); }

.nav-tab.active {
  color: var(--near-black);
  font-weight: 600;
}

.tab-indicator {
  position: absolute;
  bottom: 0;
  height: 3px;
  background: var(--owner-green);
  border-radius: 3px 3px 0 0;
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1), width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== MAIN CONTENT ========== */
.main-content {
  padding-bottom: 80px;
}

/* ========== FEATURED VIDEO ========== */
.featured-section {
  padding-top: 24px;
  padding-bottom: 40px;
}

.featured-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
  align-items: start;
}

.featured-video {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 20px;
  overflow: hidden;
  cursor: none;
  background: var(--near-black);
}

.featured-video .video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.featured-video .video-gradient-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(12, 178, 48, 0.5) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(86, 174, 221, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(116, 108, 207, 0.25) 0%, transparent 40%),
    linear-gradient(135deg, #094413 0%, #088924 40%, #0CB230 60%, #115C1E 80%, #094413 100%);
}

.featured-video .shine-sweep {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.06) 45%,
    rgba(255, 255, 255, 0.12) 50%,
    rgba(255, 255, 255, 0.06) 55%,
    transparent 60%
  );
  animation: shineSweep 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shineSweep {
  0% { transform: translateX(-100%); }
  50%, 100% { transform: translateX(100%); }
}

.featured-video .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.featured-video:hover .play-btn {
  background: rgba(255,255,255,0.25);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 40px rgba(255,255,255,0.15);
}

.play-btn svg {
  width: 28px;
  height: 28px;
  fill: white;
  margin-left: 3px;
}

.featured-info {
  padding: 8px 0;
}

.featured-info .label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--owner-green);
  margin-bottom: 12px;
}

.featured-info h2 {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--near-black);
  margin-bottom: 16px;
}

.featured-info p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--near-black);
  opacity: 0.65;
  margin-bottom: 20px;
}

.featured-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 24px;
  font-weight: 800;
  color: var(--owner-green);
  letter-spacing: -0.5px;
}

.stat-label {
  font-size: 12px;
  color: var(--warm-gray-dark);
  margin-top: 2px;
}

.btn-roles {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--near-black);
  color: white;
  border: none;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: none;
  transition: all 0.25s ease;
}

.btn-roles:hover {
  background: var(--owner-green);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(8,137,36,0.3);
}

.btn-roles svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s;
}

.btn-roles:hover svg { transform: translateX(3px); }

/* ========== PLAYLIST SECTION ========== */
.playlist-section {
  padding-top: 16px;
  padding-bottom: 8px;
}

.playlist-section + .playlist-section {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 28px;
}

.playlist-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 4px;
}

.playlist-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--near-black);
}

.playlist-description {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 16px;
  max-width: 600px;
}

.playlist-description:empty {
  display: none;
}

.playlist-see-all {
  font-size: 14px;
  font-weight: 600;
  color: var(--owner-green);
  text-decoration: none;
  cursor: none;
  transition: opacity 0.2s;
}
.playlist-see-all:hover { opacity: 0.7; }

.playlist-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  align-items: flex-start;
}
.playlist-row::-webkit-scrollbar { display: none; }

/* ========== VIDEO CARD ========== */
.video-card {
  flex: 0 0 calc(25% - 12px);
  min-width: 260px;
  scroll-snap-align: start;
  cursor: none;
  transition: none;
}

.video-card .thumb-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 20px;
  overflow: hidden;
  background: var(--warm-beige);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.35s ease, outline-color 0.35s ease;
  outline: 2px solid transparent;
  outline-offset: 0px;
}

.video-card:hover .thumb-wrapper {
  box-shadow: 0 0 0 3px var(--owner-green), 0 8px 32px rgba(8,137,36,0.35);
  outline-color: transparent;
}

.video-card .thumb-bg {
  position: absolute;
  inset: 0;
}

.video-card .thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-card:hover .thumb-overlay { opacity: 1; }

.video-card .duration-badge {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.8);
  color: white;
  font-size: 12px;
  font-weight: 500;
  padding: 2px 6px;
  border-radius: 4px;
  line-height: 1.3;
}

.video-card .card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--owner-green);
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.02em;
}

.video-card .card-info {
  padding: 10px 4px 8px;
  display: flex;
  gap: 10px;
}

.video-card .card-avatar {
  display: none;
}

.video-card .card-text {
  min-width: 0;
}

.video-card .card-title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--near-black);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.25s;
  min-height: calc(15px * 1.35 * 2);
  margin-bottom: 2px;
}

.video-card:hover .card-title { color: var(--owner-green); }

.video-card .card-meta {
  font-size: 12px;
  color: var(--warm-gray-dark);
  margin-top: 0;
  line-height: 1.4;
}

/* Gradient thumbnail backgrounds for different playlists */
.thumb-gradient-roles {
  background: linear-gradient(135deg, #088924 0%, #0CB230 40%, #56AEDD 100%);
}
.thumb-gradient-why1 {
  background: linear-gradient(135deg, #0CB230 0%, #094413 60%, #034F81 100%);
}
.thumb-gradient-why2 {
  background: linear-gradient(135deg, #088924 0%, #DDAD6B 100%);
}
.thumb-gradient-why3 {
  background: linear-gradient(135deg, #56AEDD 0%, #034F81 50%, #746CCF 100%);
}
.thumb-gradient-why4 {
  background: linear-gradient(135deg, #746CCF 0%, #534AB2 50%, #088924 100%);
}
.thumb-gradient-bts {
  background: linear-gradient(135deg, #094413 0%, #0CB230 50%, #F9F3ED 100%);
}
.thumb-gradient-team {
  background: linear-gradient(135deg, #F6EEE5 0%, #088924 50%, #034F81 100%);
}
.thumb-gradient-work {
  background: linear-gradient(135deg, #C58A3A 0%, #DDAD6B 40%, #088924 100%);
}

/* Thumb icon overlay */
.thumb-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  opacity: 0.3;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
}

/* Real YouTube thumbnail images */
.thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  transition: opacity 0.3s ease;
}

/* YouTube hover preview */
.thumb-wrapper .yt-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: inherit;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.thumb-wrapper .yt-preview.loaded {
  opacity: 1;
}
.thumb-wrapper.previewing .thumb-img {
  opacity: 0;
}
.thumb-wrapper.previewing .thumb-overlay,
.thumb-wrapper.previewing .card-badge,
.thumb-wrapper.previewing .duration-badge {
  opacity: 0 !important;
  transition: opacity 0.2s ease;
}


.featured-video img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

/* ========== VIDEO DETAIL VIEW (Watch Page) ========== */
.video-detail-view {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: var(--warm-white);
  overflow-y: scroll !important;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.video-detail-view.active { display: block; }

.video-detail-back {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251,248,245,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 24px;
  border-bottom: 1px solid var(--warm-gray);
}

.video-detail-back a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--near-black);
  text-decoration: none;
  cursor: none;
  transition: color 0.2s;
}

.video-detail-back a:hover { color: var(--owner-green); }

.video-detail-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px;
}

.video-player-area {
  aspect-ratio: 16/9;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.video-player-area .video-gradient-bg {
  position: absolute;
  inset: 0;
}

.video-player-area .play-btn-large {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: all 0.3s ease;
}

.video-player-area .play-btn-large:hover {
  background: rgba(255,255,255,0.3);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-player-area .play-btn-large svg {
  width: 32px;
  height: 32px;
  fill: white;
  margin-left: 4px;
}

.video-detail-info {
  padding: 20px 0;
}

.video-detail-title {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.video-detail-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--warm-beige);
  margin-bottom: 16px;
}

.video-detail-channel {
  display: flex;
  align-items: center;
  gap: 12px;
}

.video-detail-channel .mini-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 16px;
}

.video-detail-channel-name {
  font-weight: 600;
  font-size: 15px;
}

.video-detail-subs {
  font-size: 13px;
  color: var(--warm-gray-dark);
}

.video-detail-actions {
  display: flex;
  gap: 8px;
  margin-left: auto;
}

.action-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 24px;
  border: 1px solid var(--warm-gray);
  background: var(--warm-white);
  font-size: 13px;
  font-weight: 600;
  color: var(--near-black);
  cursor: none;
  transition: all 0.2s;
}

.action-btn:hover {
  background: var(--warm-beige);
  border-color: var(--warm-gray-dark);
}

.video-detail-description {
  background: var(--warm-cream);
  border-radius: 16px;
  padding: 16px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--near-black);
}

.video-detail-description .desc-stats {
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14px;
}

.video-detail-description .desc-body {
  opacity: 0.8;
}

.video-detail-description .desc-body h4 {
  font-weight: 700;
  margin: 16px 0 8px;
  font-size: 15px;
}

.video-detail-description .desc-body ul {
  padding-left: 20px;
  margin: 8px 0;
}

.video-detail-description .desc-body li {
  margin-bottom: 4px;
}

.video-detail-description .apply-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 12px 28px;
  background: var(--owner-green);
  color: white;
  border: none;
  border-radius: 24px;
  font-size: 15px;
  font-weight: 600;
  cursor: none;
  transition: all 0.25s;
}

.video-detail-description .apply-cta:hover {
  background: var(--bright-green);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(8,137,36,0.3);
}

.video-detail-description .location-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  margin-left: 12px;
  padding: 8px 16px;
  background: var(--warm-beige);
  border-radius: 24px;
  font-size: 13px;
  font-weight: 500;
  color: var(--near-black);
}

/* Sidebar */
.video-sidebar {
  padding-top: 0;
}

.sidebar-heading {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--near-black);
}

.sidebar-card {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  cursor: none;
  padding: 6px;
  border-radius: 12px;
  transition: background 0.2s;
}

.sidebar-card:hover { background: var(--warm-cream); }

.sidebar-card .sidebar-thumb {
  width: 168px;
  min-width: 168px;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.sidebar-card .sidebar-thumb-bg {
  position: absolute;
  inset: 0;
}

.sidebar-card .sidebar-thumb .duration-badge {
  position: absolute;
  bottom: 4px;
  right: 4px;
  background: rgba(0,0,0,0.8);
  color: white;
  font-size: 11px;
  font-weight: 500;
  padding: 1px 4px;
  border-radius: 3px;
}

.sidebar-card .sidebar-info {
  min-width: 0;
}

.sidebar-card .sidebar-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--near-black);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sidebar-card .sidebar-meta {
  font-size: 12px;
  color: var(--warm-gray-dark);
  margin-top: 4px;
}

/* ========== CTA SECTION ========== */
.cta-section {
  padding: 80px 0;
  position: relative;
}

.cta-container {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  padding: clamp(48px, 8vw, 96px) clamp(24px, 4vw, 64px);
  text-align: center;
}

.cta-gradient-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #094413 0%, #088924 30%, #0CB230 50%, #115C1E 70%, #094413 100%);
}

.cta-stars {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.cta-stars .star {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
}

.cta-stars .star:nth-child(1) {
  width: 400px; height: 400px;
  background: rgba(86,174,221,0.2);
  top: -100px; right: -50px;
}
.cta-stars .star:nth-child(2) {
  width: 300px; height: 300px;
  background: rgba(12,178,48,0.25);
  bottom: -80px; left: -30px;
}
.cta-stars .star:nth-child(3) {
  width: 200px; height: 200px;
  background: rgba(116,108,207,0.15);
  top: 30%; left: 40%;
}

.cta-noise {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px;
}

.cta-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content .display {
  color: white;
  margin-bottom: 16px;
}

.cta-content .body-large {
  color: rgba(255,255,255,0.8);
  max-width: 500px;
  margin: 0 auto 40px;
}

.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.btn-apply-main {
  padding: 14px 36px;
  background: white;
  color: var(--owner-green);
  border: none;
  border-radius: 28px;
  font-size: 16px;
  font-weight: 700;
  cursor: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.btn-apply-main:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.btn-pitch {
  padding: 14px 36px;
  background: rgba(255,255,255,0.1);
  color: white;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 28px;
  font-size: 16px;
  font-weight: 600;
  cursor: none;
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
}

.btn-pitch:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}

.btn-refer {
  display: inline-block;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: none;
  background: none;
  border: none;
  transition: color 0.2s;
}

.btn-refer:hover { color: white; }

.cta-location {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  backdrop-filter: blur(4px);
}

/* ========== FOOTER ========== */
.footer {
  padding: 32px 0;
  border-top: 1px solid var(--warm-beige);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  font-size: 20px;
  font-weight: 800;
  color: var(--owner-green);
  letter-spacing: -0.5px;
}

.footer-division {
  font-size: 13px;
  color: var(--warm-gray-dark);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 13px;
  color: var(--warm-gray-dark);
  text-decoration: none;
  transition: color 0.2s;
  cursor: none;
}

.footer-links a:hover { color: var(--owner-green); }

/* ========== TAB CONTENT ========== */
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

/* ========== VIDEOS TAB — GRID ========== */
.videos-grid-section {
  padding-top: 24px;
  padding-bottom: 40px;
}

.videos-grid-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.videos-grid-header h2 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.videos-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid var(--warm-gray);
  background: var(--warm-white);
  font-size: 13px;
  font-weight: 500;
  color: var(--near-black);
  cursor: none;
  transition: all 0.2s;
}

.filter-btn:hover {
  background: var(--warm-beige);
  border-color: var(--warm-gray-dark);
}

.filter-btn.active {
  background: var(--near-black);
  color: white;
  border-color: var(--near-black);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  align-items: start;
}

.videos-grid .video-card {
  flex: none;
  min-width: 0;
}

/* ========== ABOUT TAB ========== */
.about-section {
  padding-top: 32px;
  padding-bottom: 48px;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
}

.about-main h2 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.about-desc p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--near-black);
  opacity: 0.8;
  margin-bottom: 16px;
}

.about-desc p.body-large {
  font-size: 20px;
  opacity: 1;
  line-height: 1.5;
  margin-bottom: 20px;
}

.about-desc h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 32px 0 16px;
  letter-spacing: -0.3px;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 20px 0 8px;
}

.about-stat {
  background: var(--warm-cream);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
}

.about-stat-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--owner-green);
  letter-spacing: -0.5px;
}

.about-stat-label {
  font-size: 13px;
  color: var(--warm-gray-dark);
  margin-top: 4px;
}

.about-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-card {
  background: var(--warm-cream);
  border-radius: 20px;
  padding: 24px;
}

.about-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.2px;
}

.about-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-links a {
  font-size: 14px;
  color: var(--near-black);
  text-decoration: none;
  transition: color 0.2s;
  cursor: none;
}

.about-links a:hover {
  color: var(--owner-green);
}

.about-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-detail-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.about-detail-row span:first-child {
  color: var(--warm-gray-dark);
}

.about-detail-row span:last-child {
  font-weight: 600;
  color: var(--near-black);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .featured-inner { grid-template-columns: 1fr; }
  .video-detail-layout { grid-template-columns: 1fr; }
  .video-sidebar { padding-top: 16px; }
  .sidebar-card .sidebar-thumb { width: 140px; min-width: 140px; }
  .about-layout { grid-template-columns: 1fr; }
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .featured-inner { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .channel-banner { aspect-ratio: 3/1; min-height: 140px; }
  .banner-wordmark { gap: 8px; }
  .banner-tagline { font-size: 10px; letter-spacing: 0.1em; }
  .banner-roles-ticker { height: 24px; }
  .ticker-track { font-size: 10px; }
  .channel-info-inner { flex-direction: column; }
  .channel-actions { width: 100%; }
  .btn-subscribe { flex: 1; text-align: center; }
  .video-card { flex: 0 0 calc(80vw - 24px); min-width: 240px; }
  .featured-stats { flex-wrap: wrap; gap: 12px; }
  .stat-item { flex: 1; min-width: 80px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .btn-apply-main, .btn-pitch { width: 100%; max-width: 300px; }
}

/* ========== REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .scroll-progress { display: none; }
}
