
body { overflow-x: hidden; }
.ytv2-hero,
.ytv2-breadcrumb,
.ytv2-toc,
.ytv2-cta-final {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

:root {
  --yt-primary: #FF0000;
  --yt-primary-dark: #CC0000;
  --yt-gradient: linear-gradient(135deg, #FF0000 0%, #CC0000 50%, #B71C1C 100%);
  --yt-gradient-light: linear-gradient(135deg, #FFEBEE 0%, #FFCDD2 100%);
  --yt-accent: #FFD700;
  --yt-accent2: #00BCD4;
  --yt-neon-red: #FF1744;
  --yt-neon-cyan: #00E5FF;
  --yt-neon-purple: #D500F9;
  --yt-dark: #0D0D1A;
  --yt-dark2: #1A1A2E;
  --yt-card-bg: rgba(255,255,255,0.95);
  --yt-glass: rgba(255,255,255,0.08);
  --yt-glass-border: rgba(255,255,255,0.12);
  --yt-shadow: 0 8px 32px rgba(255,0,0,0.12);
  --yt-shadow-lg: 0 20px 60px rgba(255,0,0,0.15);
  --yt-radius: 16px;
  --yt-radius-lg: 24px;
}

/* ========== KEYFRAME ANIMATIONS ========== */
@keyframes ytFloatUp {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes ytPulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.9; }
}
@keyframes ytSlideInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes ytGradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes ytBounceIn {
  0% { opacity: 0; transform: scale(0.3); }
  50% { opacity: 1; transform: scale(1.05); }
  70% { transform: scale(0.95); }
  100% { transform: scale(1); }
}
@keyframes ytGlow {
  0%,100% { box-shadow: 0 0 20px rgba(255,0,0,0.3); }
  50% { box-shadow: 0 0 40px rgba(255,0,0,0.6); }
}
@keyframes ytRGBGlow {
  0% { box-shadow: 0 0 20px rgba(255,0,0,0.5), 0 0 40px rgba(255,0,0,0.2); }
  33% { box-shadow: 0 0 20px rgba(0,229,255,0.5), 0 0 40px rgba(0,229,255,0.2); }
  66% { box-shadow: 0 0 20px rgba(213,0,249,0.5), 0 0 40px rgba(213,0,249,0.2); }
  100% { box-shadow: 0 0 20px rgba(255,0,0,0.5), 0 0 40px rgba(255,0,0,0.2); }
}
@keyframes ytNeonPulse {
  0%,100% { opacity: 0.6; filter: blur(8px); }
  50% { opacity: 1; filter: blur(12px); }
}
@keyframes ytOrbitSpin {
  from { transform: rotateX(55deg) rotateZ(0deg); }
  to { transform: rotateX(55deg) rotateZ(360deg); }
}
@keyframes ytBadgeCounterSpin {
  from { transform: rotateZ(0deg) rotateX(-55deg); }
  to { transform: rotateZ(-360deg) rotateX(-55deg); }
}
@keyframes ytBadgeAutoFlip {
  0%,15% { transform: rotateY(0deg); }
  25%,90% { transform: rotateY(180deg); }
  100% { transform: rotateY(360deg); }
}
@keyframes ytCatFloat {
  0%,100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-8px) rotate(1deg); }
  75% { transform: translateY(-4px) rotate(-1deg); }
}
@keyframes ytCatHeartPulse {
  0%,100% { transform: scale(0.9); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}
@keyframes ytTrailFloat1 {
  0% { transform: translate(0, 0) scale(0); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translate(80px, -120px) scale(1.2); opacity: 0; }
}
@keyframes ytTrailFloat2 {
  0% { transform: translate(0, 0) scale(0); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translate(-70px, -100px) scale(1); opacity: 0; }
}
@keyframes ytTrailFloat3 {
  0% { transform: translate(0, 0) scale(0); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translate(60px, 90px) scale(0.8); opacity: 0; }
}
@keyframes ytTrailFloat4 {
  0% { transform: translate(0, 0) scale(0); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translate(-90px, 60px) scale(1.1); opacity: 0; }
}
@keyframes ytShimmer {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* ===== KEYWORD ROTATOR ===== */
@keyframes ytKwSlideUp {
  0%,5.33% { opacity: 1; transform: translateY(0); }
  6%,6.33% { opacity: 0; transform: translateY(-120%); }
  6.67%,100% { opacity: 0; transform: translateY(100%); }
}

/* ========== SCROLL REVEAL CLASSES ========== */
.yt-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.yt-reveal.revealed { opacity: 1; transform: translateY(0); }
.yt-reveal-left {
  opacity: 0; transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.yt-reveal-left.revealed { opacity: 1; transform: translateX(0); }
.yt-reveal-right {
  opacity: 0; transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.yt-reveal-right.revealed { opacity: 1; transform: translateX(0); }
.yt-reveal-scale {
  opacity: 0; transform: scale(0.85);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.34,1.56,0.64,1);
}
.yt-reveal-scale.revealed { opacity: 1; transform: scale(1); }

/* Stagger delays */
.yt-stagger > *:nth-child(1) { transition-delay: 0.05s; }
.yt-stagger > *:nth-child(2) { transition-delay: 0.1s; }
.yt-stagger > *:nth-child(3) { transition-delay: 0.15s; }
.yt-stagger > *:nth-child(4) { transition-delay: 0.2s; }
.yt-stagger > *:nth-child(5) { transition-delay: 0.25s; }
.yt-stagger > *:nth-child(6) { transition-delay: 0.3s; }
.yt-stagger > *:nth-child(7) { transition-delay: 0.35s; }
.yt-stagger > *:nth-child(8) { transition-delay: 0.4s; }
.yt-stagger > *:nth-child(9) { transition-delay: 0.45s; }

/* ========== BREADCRUMB ========== */
.ytv2-breadcrumb {
  background: var(--yt-dark);
  padding: 10px 0;
  font-size: 0.85rem;
}
.ytv2-breadcrumb ol {
  list-style: none; margin: 0; padding: 0;
  display: flex; align-items: center; gap: 8px;
  flex-wrap: wrap;
}
.ytv2-breadcrumb a { color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.3s; }
.ytv2-breadcrumb a:hover { color: var(--yt-primary); }
.ytv2-breadcrumb .separator { color: rgba(255,255,255,0.3); }
.ytv2-breadcrumb .current span { color: var(--yt-primary); font-weight: 600; }

/* ========== HERO SECTION ========== */
.ytv2-hero {
  position: relative;
  background: linear-gradient(135deg, #0D0D1A 0%, #1A0A0A 30%, #2D0000 60%, #1A0A0A 100%);
  background-size: 200% 200%;
  animation: ytGradientShift 12s ease infinite;
  padding: 80px 0 100px;
  overflow: visible;
  min-height: 520px;
  display: flex;
  align-items: center;
}
/* Pixel dot pattern overlay */
.ytv2-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23FF0000' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
/* Gamer-RGB scan line effect */
.ytv2-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255,0,0,0.015) 2px,
    rgba(255,0,0,0.015) 4px
  );
  pointer-events: none;
}

/* Floating orbs - RGB themed */
.ytv2-hero .hero-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.ytv2-hero .hero-orb-1 {
  width: 300px; height: 300px; top: -80px; right: -60px;
  background: radial-gradient(circle, rgba(255,0,0,0.15) 0%, transparent 70%);
  animation: ytFloatUp 6s ease-in-out infinite;
}
.ytv2-hero .hero-orb-2 {
  width: 200px; height: 200px; bottom: -50px; left: 5%;
  background: radial-gradient(circle, rgba(0,229,255,0.1) 0%, transparent 70%);
  animation: ytFloatUp 8s ease-in-out infinite 1s;
}
.ytv2-hero .hero-orb-3 {
  width: 120px; height: 120px; top: 30%; left: 15%;
  background: radial-gradient(circle, rgba(213,0,249,0.1) 0%, transparent 70%);
  animation: ytFloatUp 5s ease-in-out infinite 0.5s;
}

/* Hero badge */
.ytv2-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,0,0,0.2);
  border: 1px solid rgba(255,0,0,0.3);
  backdrop-filter: blur(8px);
  padding: 8px 20px;
  border-radius: 50px;
  color: #FFD700;
  font-size: 0.85rem; font-weight: 700;
  margin-bottom: 1rem;
  animation: ytGlow 3s ease-in-out infinite;
}
.ytv2-hero-badge i { color: #FFD700; }

/* H1 + Keyword Rotator flex wrapper */
.yt-hero-headline {
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 0.3rem; flex-wrap: nowrap;
}
.ytv2-hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800; color: #fff;
  line-height: clamp(2.4rem, 5.5vw, 3.6rem);
  margin: 0;
  text-shadow: 0 0 30px rgba(255,0,0,0.3), 0 2px 20px rgba(0,0,0,0.3);
  white-space: nowrap;
}
.yt-keyword-rotator {
  display: inline-block;
  height: clamp(2.2rem, 4.5vw, 3.2rem);
  overflow: hidden; position: relative;
  min-width: 320px;
}
.yt-kw {
  display: block;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: clamp(2.2rem, 4.5vw, 3.2rem);
  color: var(--kw-color, #FFFFFF);
  text-shadow: 0 0 20px var(--kw-glow, rgba(255,0,0,0.4)),
               0 0 40px var(--kw-glow, rgba(255,0,0,0.2)),
               0 2px 10px rgba(0,0,0,0.3);
  opacity: 0; transform: translateY(100%);
  position: absolute; left: 0; top: 0;
  white-space: nowrap;
  animation: ytKwSlideUp 45s infinite;
}
/* 15 keywords → 100/15 = 6.67% each */
.yt-kw:nth-child(1) { animation-delay: 0s; --kw-color: #FF1744; --kw-glow: rgba(255,23,68,0.5); }
.yt-kw:nth-child(2) { animation-delay: 3s; --kw-color: #FFD700; --kw-glow: rgba(255,215,0,0.5); }
.yt-kw:nth-child(3) { animation-delay: 6s; --kw-color: #00E5FF; --kw-glow: rgba(0,229,255,0.5); }
.yt-kw:nth-child(4) { animation-delay: 9s; --kw-color: #76FF03; --kw-glow: rgba(118,255,3,0.5); }
.yt-kw:nth-child(5) { animation-delay: 12s; --kw-color: #FF9100; --kw-glow: rgba(255,145,0,0.5); }
.yt-kw:nth-child(6) { animation-delay: 15s; --kw-color: #FF1744; --kw-glow: rgba(255,23,68,0.5); }
.yt-kw:nth-child(7) { animation-delay: 18s; --kw-color: #FFD700; --kw-glow: rgba(255,215,0,0.5); }
.yt-kw:nth-child(8) { animation-delay: 21s; --kw-color: #00E5FF; --kw-glow: rgba(0,229,255,0.5); }
.yt-kw:nth-child(9) { animation-delay: 24s; --kw-color: #D500F9; --kw-glow: rgba(213,0,249,0.5); }
.yt-kw:nth-child(10) { animation-delay: 27s; --kw-color: #FF1744; --kw-glow: rgba(255,23,68,0.5); }
.yt-kw:nth-child(11) { animation-delay: 30s; --kw-color: #FFD700; --kw-glow: rgba(255,215,0,0.5); }
.yt-kw:nth-child(12) { animation-delay: 33s; --kw-color: #76FF03; --kw-glow: rgba(118,255,3,0.5); }
.yt-kw:nth-child(13) { animation-delay: 36s; --kw-color: #00E5FF; --kw-glow: rgba(0,229,255,0.5); }
.yt-kw:nth-child(14) { animation-delay: 39s; --kw-color: #FF9100; --kw-glow: rgba(255,145,0,0.5); }
.yt-kw:nth-child(15) { animation-delay: 42s; --kw-color: #D500F9; --kw-glow: rgba(213,0,249,0.5); }

/* Hero tagline */
.yt-hero-tagline {
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 600;
  background: linear-gradient(90deg, #FFD700, #FF6D00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0.5rem 0 1rem;
}
.ytv2-hero-sub {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem; line-height: 1.7;
  max-width: 560px; margin-bottom: 1.5rem;
}
.ytv2-hero-sub strong { color: #FFD700; }

/* Hero stats */
.ytv2-hero-stats {
  display: flex; gap: 1.5rem;
  margin-bottom: 2rem; flex-wrap: wrap;
}
.ytv2-hero-stat {
  display: flex; flex-direction: column; align-items: center;
  background: rgba(255,0,0,0.1);
  border: 1px solid rgba(255,0,0,0.2);
  backdrop-filter: blur(8px);
  border-radius: 12px; padding: 12px 20px;
  min-width: 90px;
}
.ytv2-hero-stat-num {
  font-size: 1.5rem; font-weight: 800; color: #FFD700;
}
.ytv2-hero-stat-label {
  font-size: 0.75rem; color: rgba(255,255,255,0.7);
  text-transform: uppercase;
}

/* Hero CTA */
.ytv2-hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #FF0000, #CC0000);
  color: #fff; font-weight: 700; font-size: 1.05rem;
  padding: 14px 32px; border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(255,0,0,0.4);
  transition: all 0.4s ease;
  position: relative; overflow: hidden;
}
.ytv2-hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255,0,0,0.6);
  color: #fff;
}
.ytv2-hero-cta::after {
  content: ''; position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: ytShimmer 3s ease-in-out infinite;
}

/* ========== CAT ROBOT SCENE (3D Orbit Ring + RGB Glow) ========== */
.ytv2-cat-scene {
  position: relative;
  perspective: 1000px;
  overflow: visible;
  height: 550px;
  display: flex; align-items: center; justify-content: center;
}
.ytv2-cat-heart-glow {
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,0,0,0.25) 0%, rgba(213,0,249,0.1) 40%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: ytCatHeartPulse 2.5s ease-in-out infinite, ytRGBGlow 6s ease infinite;
  z-index: 1;
}
.ytv2-cat-img {
  position: relative;
  max-width: 300px;
  z-index: 5;
  animation: ytCatFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(255,0,0,0.3));
}

/* 3D Orbit Ring — 560px ring with 300px cat = 1.87:1 ratio.
   z-index 3 puts ring BEHIND cat (z-index 5) for 3D wrapping depth.
   55° tilt keeps badges visible at eye level while ring wraps around body. */
.ytv2-orbit-ring {
  position: absolute;
  width: 560px; height: 560px;
  top: 50%; left: 50%;
  margin-top: -250px; margin-left: -280px;
  transform-style: preserve-3d;
  animation: ytOrbitSpin 25s linear infinite;
  z-index: 3;
}
/* RGB ring glow trail */
.ytv2-orbit-ring::before {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: rgba(255,0,0,0.4);
  border-right-color: rgba(0,229,255,0.3);
  border-bottom-color: rgba(213,0,249,0.3);
  border-left-color: rgba(255,215,0,0.3);
  animation: ytRGBGlow 4s ease infinite;
}

/* Flip badges — 62px for clear visibility on 560px ring */
.ytv2-flip-badge {
  position: absolute;
  width: 62px; height: 62px;
  animation: ytBadgeCounterSpin 25s linear infinite;
}
.ytv2-flip-inner {
  width: 100%; height: 100%;
  transform-style: preserve-3d;
  animation: ytBadgeAutoFlip 5s ease-in-out infinite;
}
/* Staggered wave: each badge flips at different time → ~3/4 show text, ~1/4 show icon */
.yt-pos-1 .ytv2-flip-inner { animation-delay: 0s; }
.yt-pos-2 .ytv2-flip-inner { animation-delay: -0.625s; }
.yt-pos-3 .ytv2-flip-inner { animation-delay: -1.25s; }
.yt-pos-4 .ytv2-flip-inner { animation-delay: -1.875s; }
.yt-pos-5 .ytv2-flip-inner { animation-delay: -2.5s; }
.yt-pos-6 .ytv2-flip-inner { animation-delay: -3.125s; }
.yt-pos-7 .ytv2-flip-inner { animation-delay: -3.75s; }
.yt-pos-8 .ytv2-flip-inner { animation-delay: -4.375s; }
.ytv2-flip-front, .ytv2-flip-back {
  position: absolute; inset: 0;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  backface-visibility: hidden;
  font-size: 0.75rem; font-weight: 700;
}
.ytv2-flip-front {
  background: rgba(255,0,0,0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,0,0,0.3);
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 0 15px rgba(255,0,0,0.2);
}
.ytv2-flip-back {
  background: linear-gradient(135deg, #FF0000, #CC0000);
  color: #fff;
  transform: rotateY(180deg);
  font-size: 0.65rem;
  text-align: center;
  padding: 4px;
  box-shadow: 0 0 20px rgba(255,0,0,0.4);
}

/* Badge positions (8 positions on orbit) */
.yt-pos-1 { top: 0; left: 50%; margin-left: -29px; }
.yt-pos-2 { top: 14%; right: 0; }
.yt-pos-3 { top: 50%; right: -6px; margin-top: -29px; }
.yt-pos-4 { bottom: 14%; right: 0; }
.yt-pos-5 { bottom: 0; left: 50%; margin-left: -29px; }
.yt-pos-6 { bottom: 14%; left: 0; }
.yt-pos-7 { top: 50%; left: -6px; margin-top: -29px; }
.yt-pos-8 { top: 14%; left: 0; }

/* RGB particle trails */
.ytv2-trail {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  z-index: 4;
}
.ytv2-trail.t1 { background: #FF1744; top: 20%; left: 30%; animation: ytTrailFloat1 3s ease-in-out infinite; }
.ytv2-trail.t2 { background: #00E5FF; top: 60%; right: 25%; animation: ytTrailFloat2 4s ease-in-out infinite 0.5s; }
.ytv2-trail.t3 { background: #D500F9; bottom: 25%; left: 25%; animation: ytTrailFloat3 3.5s ease-in-out infinite 1s; }
.ytv2-trail.t4 { background: #FFD700; top: 35%; right: 20%; animation: ytTrailFloat4 4.5s ease-in-out infinite 1.5s; }
.ytv2-trail.t5 { background: #FF1744; bottom: 35%; right: 35%; animation: ytTrailFloat1 5s ease-in-out infinite 2s; }
.ytv2-trail.t6 { background: #00E5FF; top: 45%; left: 15%; animation: ytTrailFloat2 3s ease-in-out infinite 0.8s; }
.ytv2-trail.t7 { background: #76FF03; bottom: 15%; right: 15%; animation: ytTrailFloat3 4s ease-in-out infinite 1.2s; }
.ytv2-trail.t8 { background: #FFD700; top: 15%; left: 40%; animation: ytTrailFloat4 3.5s ease-in-out infinite 0.3s; }

/* ========== STICKY TOC ========== */
.ytv2-toc {
  background: var(--yt-dark);
  border-bottom: 1px solid rgba(255,0,0,0.15);
  position: sticky; top: 0; z-index: 10;
  padding: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.ytv2-toc-inner {
  display: flex; align-items: center; gap: 4px;
  padding: 10px 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.ytv2-toc-inner::-webkit-scrollbar { display: none; }
.ytv2-toc-label {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem; white-space: nowrap;
  margin-right: 8px;
}
.ytv2-toc-link {
  color: rgba(255,255,255,0.7);
  text-decoration: none; font-size: 0.8rem;
  padding: 6px 14px; border-radius: 20px;
  white-space: nowrap;
  transition: all 0.3s;
  border: 1px solid transparent;
}
.ytv2-toc-link:hover, .ytv2-toc-link.active {
  color: #fff;
  background: rgba(255,0,0,0.2);
  border-color: rgba(255,0,0,0.3);
}

/* ========== GENERAL SECTION STYLES ========== */
.ytv2-section {
  padding: 60px 0;
  position: relative;
}
.ytv2-section-alt {
  background: var(--yt-gradient-light);
}
.ytv2-section-title {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #1A1A2E;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.ytv2-gradient-line {
  width: 80px; height: 4px;
  background: linear-gradient(90deg, #FF0000, #FFD700);
  margin: 0 auto 1rem;
  border-radius: 2px;
}
.ytv2-section-desc {
  text-align: center;
  color: #555;
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.ytv2-sub-heading {
  font-size: 1.3rem; font-weight: 700;
  color: #1A1A2E; margin-bottom: 1rem;
}

/* ========== SERVICE CARDS ========== */
.ytv2-svc-card {
  background: var(--yt-card-bg);
  border-radius: var(--yt-radius);
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(255,0,0,0.08);
  box-shadow: var(--yt-shadow);
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  height: 100%;
  display: flex; flex-direction: column; align-items: center;
}
.ytv2-svc-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--yt-shadow-lg);
  border-color: rgba(255,0,0,0.2);
}
.ytv2-svc-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #FFEBEE, #FFCDD2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--yt-primary);
  margin-bottom: 1rem;
  transition: all 0.3s;
}
.ytv2-svc-card:hover .ytv2-svc-icon {
  background: var(--yt-gradient);
  color: #fff;
  transform: scale(1.1) rotate(5deg);
}
.ytv2-svc-name {
  font-size: 1rem; font-weight: 700;
  color: #1A1A2E; margin-bottom: 0.5rem;
}
.ytv2-svc-desc {
  font-size: 0.88rem; color: #666;
  line-height: 1.5; margin-bottom: 1rem;
  flex-grow: 1;
}
.ytv2-svc-link {
  color: var(--yt-primary);
  font-weight: 600; font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s;
}
.ytv2-svc-link:hover {
  color: var(--yt-primary-dark);
  transform: translateX(4px);
}

/* ========== INTRO SECTION ========== */
.ytv2-intro-text {
  font-size: 1rem; line-height: 1.8;
  color: #333;
}
.ytv2-intro-text p { margin-bottom: 1rem; }
.ytv2-intro-highlight {
  background: linear-gradient(135deg, #FFF3E0, #FFECB3);
  border-left: 4px solid #FFD700;
  padding: 1.2rem 1.5rem;
  border-radius: 0 12px 12px 0;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}
.ytv2-intro-img-wrap {
  text-align: center;
}
.ytv2-intro-img-wrap img {
  max-width: 100%; border-radius: var(--yt-radius-lg);
  box-shadow: var(--yt-shadow-lg);
  transition: transform 0.5s;
}
.ytv2-intro-img-wrap img:hover {
  transform: scale(1.02) rotate(1deg);
}

/* Benefit items */
.ytv2-benefit-item {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--yt-card-bg);
  border-radius: 14px; padding: 1.2rem;
  border: 1px solid rgba(255,0,0,0.08);
  transition: all 0.3s;
  height: 100%;
}
.ytv2-benefit-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--yt-shadow);
}
.ytv2-benefit-item i {
  font-size: 1.3rem; min-width: 28px;
  margin-top: 3px;
}

/* Commit cards */
.ytv2-commit-card {
  background: var(--yt-card-bg);
  border-radius: var(--yt-radius);
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(255,0,0,0.08);
  transition: all 0.4s;
  height: 100%;
}
.ytv2-commit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--yt-shadow-lg);
}
.ytv2-commit-card strong {
  display: block; margin: 0.8rem 0 0.5rem;
  font-size: 1rem;
}
.ytv2-commit-card p {
  font-size: 0.88rem; color: #666;
  margin: 0; line-height: 1.5;
}

/* ========== UNIQUE SECTIONS — Dark gradient bg ========== */
.ytv2-dark-section {
  background: linear-gradient(135deg, var(--yt-dark) 0%, #1A0A0A 50%, #2D0000 100%);
  position: relative; overflow: hidden;
  padding: 60px 0;
}
.ytv2-dark-section::before {
  content: '';
  position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at 30% 20%, rgba(255,0,0,0.08) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 80%, rgba(213,0,249,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.ytv2-dark-section .ytv2-section-title,
.ytv2-dark-section .ytv2-sub-heading { color: #fff; }
.ytv2-dark-section .ytv2-section-desc { color: rgba(255,255,255,0.75); }
.ytv2-dark-section .ytv2-gradient-line { background: linear-gradient(90deg, transparent, #FF0000, transparent); }

/* WOW image frame */
.yt-wow-img-frame {
  max-width: 720px; margin: 0 auto 2.5rem;
  position: relative; border-radius: 24px;
  padding: 6px;
  background: linear-gradient(135deg, rgba(255,0,0,0.4), rgba(213,0,249,0.2), rgba(255,215,0,0.3));
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 80px rgba(255,0,0,0.15);
  transition: all 0.6s cubic-bezier(0.16,1,0.3,1);
}
.yt-wow-img-frame:hover {
  transform: translateY(-10px) rotateX(2deg);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 120px rgba(255,0,0,0.25);
}
.yt-wow-img-frame img { width: 100%; display: block; border-radius: 20px; }
.yt-wow-img-frame::after {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: ytShimmer 4s ease-in-out infinite;
  border-radius: 24px; pointer-events: none;
}

/* Dark section cards - glassmorphism */
.yt-wow-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1100px; margin: 0 auto;
}
.yt-wow-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px; padding: 1.25rem;
  display: flex; gap: 1rem; align-items: flex-start;
  transition: all 0.4s ease;
}
.yt-wow-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-6px);
  border-color: rgba(255,0,0,0.3);
  box-shadow: 0 12px 36px rgba(255,0,0,0.15);
}
.yt-wow-card .yt-card-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(255,0,0,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.yt-wow-card strong { color: #fff; display: block; margin-bottom: 0.3rem; }
.yt-wow-card p { color: rgba(255,255,255,0.7); font-size: 0.88rem; line-height: 1.5; margin: 0; }

/* ========== WHY CHOOSE / FEATURES ========== */
.ytv2-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.ytv2-feature-card {
  background: var(--yt-card-bg);
  border-radius: var(--yt-radius);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(255,0,0,0.08);
  box-shadow: var(--yt-shadow);
  transition: all 0.4s;
}
.ytv2-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--yt-shadow-lg);
}
.ytv2-feature-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFEBEE, #FFCDD2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem; color: var(--yt-primary);
  transition: all 0.4s;
}
.ytv2-feature-card:hover .ytv2-feature-icon {
  background: var(--yt-gradient);
  color: #fff;
  transform: scale(1.15) rotate(10deg);
}
.ytv2-feature-card h4 {
  font-size: 1.05rem; font-weight: 700;
  margin-bottom: 0.5rem; color: #1A1A2E;
}
.ytv2-feature-card p {
  font-size: 0.88rem; color: #666;
  line-height: 1.5; margin: 0;
}

/* ========== HOW IT WORKS ========== */
.ytv2-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.ytv2-steps::before {
  content: '';
  position: absolute;
  top: 60px; left: 12.5%; right: 12.5%;
  height: 3px;
  background: linear-gradient(90deg, #FFCDD2, #FF0000, #FFD700);
  z-index: 0;
}
.ytv2-step-card {
  text-align: center; position: relative;
  z-index: 1;
}
.ytv2-step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--yt-gradient);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 800;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 20px rgba(255,0,0,0.3);
  position: relative;
}
.ytv2-step-num::after {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(255,0,0,0.3);
  animation: ytPulse 2s ease-in-out infinite;
}
.ytv2-step-card h4 {
  font-size: 1rem; font-weight: 700;
  color: #1A1A2E; margin-bottom: 0.5rem;
}
.ytv2-step-card p {
  font-size: 0.85rem; color: #666;
  line-height: 1.5;
}

/* ========== PRICING TABLE ========== */
.ytv2-price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--yt-radius);
  overflow: hidden;
  box-shadow: var(--yt-shadow-lg);
}
.ytv2-price-table thead th {
  background: var(--yt-gradient);
  color: #fff;
  padding: 14px 16px;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: left;
}
.ytv2-price-table tbody td {
  padding: 12px 16px;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  background: #fff;
}
.ytv2-price-table tbody tr:hover td {
  background: #FFF3E0;
}
.ytv2-price-table .price-highlight {
  color: var(--yt-primary);
  font-weight: 700;
}

/* ========== TIPS SECTION ========== */
.ytv2-tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.ytv2-tip-card {
  background: var(--yt-card-bg);
  border-radius: var(--yt-radius);
  padding: 1.5rem;
  border: 1px solid rgba(255,0,0,0.08);
  box-shadow: var(--yt-shadow);
  transition: all 0.4s;
}
.ytv2-tip-card:hover {
  transform: translateY(-6px) rotate(1deg);
  box-shadow: var(--yt-shadow-lg);
}
.ytv2-tip-icon {
  font-size: 2rem; margin-bottom: 0.8rem;
}
.ytv2-tip-card h4 {
  font-size: 1rem; font-weight: 700;
  color: #1A1A2E; margin-bottom: 0.5rem;
}
.ytv2-tip-card p {
  font-size: 0.88rem; color: #666;
  line-height: 1.5; margin: 0;
}

/* ========== TESTIMONIALS MARQUEE CAROUSEL ========== */
@keyframes ytMarqueeLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes ytMarqueeRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.ytv2-testimonial-wrapper {
  position: relative;
  overflow: hidden;
}
/* Gradient fade edges */
.ytv2-testimonial-wrapper::before,
.ytv2-testimonial-wrapper::after {
  content: '';
  position: absolute; top: 0; bottom: 0;
  width: 80px; z-index: 2;
  pointer-events: none;
}
.ytv2-testimonial-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, #fff 0%, transparent 100%);
}
.ytv2-testimonial-wrapper::after {
  right: 0;
  background: linear-gradient(270deg, #fff 0%, transparent 100%);
}

/* Track row */
.ytv2-testimonial-row {
  display: flex;
  gap: 1.25rem;
  padding: 0.75rem 0;
  width: max-content;
}
.ytv2-testimonial-row.row-1 {
  animation: ytMarqueeLeft 60s linear infinite;
}
.ytv2-testimonial-row.row-2 {
  animation: ytMarqueeRight 55s linear infinite;
}
.ytv2-testimonial-wrapper:hover .ytv2-testimonial-row {
  animation-play-state: paused;
}

/* Nav arrows */
.ytv2-testimonial-nav {
  display: flex; justify-content: center;
  gap: 0.75rem; margin-top: 1.25rem;
}
.ytv2-testimonial-nav-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255,0,0,0.2);
  background: #fff;
  color: var(--yt-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.ytv2-testimonial-nav-btn:hover {
  background: var(--yt-gradient);
  color: #fff;
  border-color: #FF0000;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(255,0,0,0.3);
}

/* Card */
.ytv2-testimonial-card {
  min-width: 340px; max-width: 380px;
  background: var(--yt-card-bg);
  border-radius: var(--yt-radius);
  padding: 1.5rem;
  border: 1px solid rgba(255,0,0,0.08);
  box-shadow: var(--yt-shadow);
  flex-shrink: 0;
  transition: all 0.3s;
  position: relative;
}
.ytv2-testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--yt-shadow-lg);
  border-color: rgba(255,0,0,0.2);
}

/* Service tag badge */
.ytv2-testimonial-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.6rem;
}
.ytv2-tag-view { background: #FFEBEE; color: #D32F2F; }
.ytv2-tag-sub { background: #E3F2FD; color: #1565C0; }
.ytv2-tag-like { background: #FFF3E0; color: #E65100; }
.ytv2-tag-shorts { background: #F3E5F5; color: #7B1FA2; }
.ytv2-tag-comment { background: #E8F5E9; color: #2E7D32; }
.ytv2-tag-live { background: #FCE4EC; color: #C62828; }

.ytv2-testimonial-stars {
  color: #FFD700;
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
}
.ytv2-testimonial-text {
  font-size: 0.9rem; color: #444;
  line-height: 1.6; margin-bottom: 1rem;
  font-style: italic;
}
.ytv2-testimonial-text strong {
  color: var(--yt-primary);
  font-style: normal;
}
.ytv2-testimonial-author {
  display: flex; align-items: center; gap: 0.8rem;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 0.8rem;
}
.ytv2-testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--yt-gradient);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem;
  flex-shrink: 0;
}
.ytv2-testimonial-name {
  font-weight: 700; font-size: 0.88rem;
  color: #1A1A2E;
}
.ytv2-testimonial-role {
  font-size: 0.75rem; color: #888;
}
.ytv2-testimonial-svc {
  font-size: 0.7rem; color: var(--yt-primary);
  font-weight: 600;
}

@media (max-width: 767px) {
  .ytv2-testimonial-card { min-width: 290px; max-width: 320px; }
  .ytv2-testimonial-wrapper::before,
  .ytv2-testimonial-wrapper::after { width: 30px; }
}

/* ========== FAQ ACCORDION ========== */
.ytv2-faq-item {
  background: var(--yt-card-bg);
  border-radius: 12px;
  margin-bottom: 0.8rem;
  border: 1px solid rgba(255,0,0,0.08);
  overflow: hidden;
  transition: all 0.3s;
}
.ytv2-faq-item:hover {
  border-color: rgba(255,0,0,0.2);
}
.ytv2-faq-q {
  padding: 1rem 1.5rem;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 700; font-size: 0.95rem;
  color: #1A1A2E;
  transition: all 0.3s;
}
.ytv2-faq-q:hover { color: var(--yt-primary); }
.ytv2-faq-q i {
  transition: transform 0.3s;
  color: var(--yt-primary);
}
.ytv2-faq-item.active .ytv2-faq-q i {
  transform: rotate(180deg);
}
.ytv2-faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.5rem;
}
.ytv2-faq-item.active .ytv2-faq-a {
  max-height: 500px;
  padding: 0 1.5rem 1rem;
}
.ytv2-faq-a p {
  font-size: 0.9rem; color: #555;
  line-height: 1.7; margin: 0;
}

/* ========== CTA FINAL ========== */
.ytv2-cta-final {
  background: linear-gradient(135deg, var(--yt-dark) 0%, #2D0000 50%, var(--yt-dark) 100%);
  padding: 60px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.ytv2-cta-final::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255,0,0,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.ytv2-cta-final h2 {
  color: #fff; font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800; margin-bottom: 0.5rem;
}
.ytv2-cta-final p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem; margin-bottom: 2rem;
  max-width: 600px; margin-left: auto; margin-right: auto;
}
.ytv2-cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #FF0000, #FFD700);
  color: #fff; font-weight: 700; font-size: 1.1rem;
  padding: 16px 40px; border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(255,0,0,0.4);
  transition: all 0.4s;
  position: relative; overflow: hidden;
}
.ytv2-cta-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(255,0,0,0.6);
  color: #fff;
}
.ytv2-cta-btn::after {
  content: ''; position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: ytShimmer 2.5s ease-in-out infinite;
}

/* ========== STATS COUNTER ========== */
.ytv2-stats-bar {
  background: var(--yt-dark);
  padding: 40px 0;
}
.ytv2-stats-grid {
  display: flex; justify-content: center;
  gap: 3rem; flex-wrap: wrap;
}
.ytv2-stat-item {
  text-align: center;
}
.ytv2-stat-num {
  font-size: 2.5rem; font-weight: 800;
  color: #FFD700;
  display: block;
}
.ytv2-stat-label {
  font-size: 0.85rem; color: rgba(255,255,255,0.6);
  text-transform: uppercase; letter-spacing: 1px;
}

/* ========== COMPARISON TABLE ========== */
.ytv2-compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--yt-radius);
  overflow: hidden;
  box-shadow: var(--yt-shadow-lg);
}
.ytv2-compare-table thead th {
  background: var(--yt-dark);
  color: #fff;
  padding: 14px 16px;
  font-weight: 700;
  font-size: 0.9rem;
}
.ytv2-compare-table thead th:first-child { text-align: left; }
.ytv2-compare-table thead th.yt-highlight {
  background: var(--yt-primary);
  color: #FFD700;
}
.ytv2-compare-table tbody td {
  padding: 12px 16px;
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  text-align: center;
  background: #fff;
}
.ytv2-compare-table tbody td:first-child { text-align: left; font-weight: 600; }
.ytv2-compare-table tbody tr:hover td { background: #FFEBEE; }

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
  .yt-hero-headline {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .ytv2-hero-title { white-space: normal; text-align: center; }
  .yt-keyword-rotator { min-width: 280px; text-align: center; }
  .yt-kw { left: 0; right: 0; text-align: center; }
  .yt-hero-tagline { text-align: center; }
  .ytv2-hero-sub { text-align: center; margin-left: auto; margin-right: auto; }
  .ytv2-hero-stats { justify-content: center; }
  .ytv2-hero-cta { display: flex; justify-content: center; margin: 0 auto; }

  /* Hero centering — match YouTube V2 mobile pattern */
  .ytv2-hero .col-lg-7 {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .ytv2-hero-badge { margin: 0 auto 1rem; }

  /* Cat scene — scale down proportionally so orbit ring fits viewport */
  .ytv2-cat-scene {
    height: 340px;
    transform: scale(0.75);
    transform-origin: center center;
  }
  .yt-wow-cards { grid-template-columns: 1fr; }
  .ytv2-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .ytv2-steps { grid-template-columns: repeat(2, 1fr); }
  .ytv2-steps::before { display: none; }
  .ytv2-tips-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .ytv2-hero { padding: 60px 0 80px; }
  /* Cat scene — scale down even more for small screens */
  .ytv2-cat-scene {
    height: 300px;
    transform: scale(0.65);
    transform-origin: center center;
  }
  .ytv2-feature-grid { grid-template-columns: 1fr; }
  .ytv2-steps { grid-template-columns: 1fr; }
  .ytv2-tips-grid { grid-template-columns: 1fr; }
  .ytv2-testimonial-card { min-width: 280px; }
  .ytv2-section { padding: 40px 0; }
}
