/* ========================================
   NARUTO CHANNEL — MASTER STYLESHEET
   Aesthetic: Dark ninja / orange flame
   ======================================== */

:root {
  --orange: #ff6b00;
  --orange-light: #ff8c2a;
  --orange-glow: #ff6b0066;
  --red: #c0392b;
  --yellow: #f0c040;
  --dark: #0a0a0c;
  --dark2: #111118;
  --dark3: #16161f;
  --dark4: #1e1e2a;
  --panel: rgba(255,107,0,0.06);
  --border: rgba(255,107,0,0.25);
  --text: #f0e8d8;
  --text-muted: #a09080;
  --font-display: 'Cinzel Decorative', serif;
  --font-body: 'Rajdhani', sans-serif;
  --font-jp: 'Noto Sans JP', sans-serif;
  --nav-h: 72px;
  --radius: 12px;
  --transition: 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--dark);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* SCROLLBAR */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* ========================================
   NOISE OVERLAY
   ======================================== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  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)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  background: rgba(10,10,12,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: background var(--transition);
}
.navbar.scrolled {
  background: rgba(10,10,12,0.98);
  box-shadow: 0 4px 30px rgba(255,107,0,0.15);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  object-fit: cover;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text);
  letter-spacing: 0.05em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--orange);
  background: rgba(255,107,0,0.1);
}
.accent { color: var(--orange); }

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* NAV OVERLAY */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 900;
  backdrop-filter: blur(4px);
}
.nav-overlay.open { display: block; }

/* ========================================
   MUSIC BUTTON
   ======================================== */
.music-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--dark4);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.6rem 1rem;
  border-radius: 50px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 2000;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.music-btn:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }
.music-btn.playing { border-color: var(--orange); color: var(--orange); }
.music-icon { font-size: 1.1rem; }

/* ========================================
   BUTTONS
   ======================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--orange), var(--red));
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(255,107,0,0.3);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255,107,0,0.5);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text);
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-3px);
}
.btn-sm {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,107,0,0.15);
  color: var(--orange);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.btn-sm:hover { background: var(--orange); color: #fff; }
.btn-yt { background: linear-gradient(135deg, #ff0000, #cc0000); }
.btn-yt:hover { box-shadow: 0 8px 30px rgba(255,0,0,0.4); }

/* TAGS */
.tag {
  display: inline-block;
  padding: 0.2rem 0.75rem;
  background: rgba(255,107,0,0.2);
  border: 1px solid rgba(255,107,0,0.4);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 0.75rem;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,107,0,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(192,57,43,0.06) 0%, transparent 50%),
              var(--dark);
}

/* Chakra rings */
.chakra-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,107,0,0.15);
  animation: spinRing 20s linear infinite;
}
.ring1 { width: 600px; height: 600px; top: 50%; left: 60%; transform: translate(-50%,-50%); animation-duration: 25s; }
.ring2 { width: 850px; height: 850px; top: 50%; left: 60%; transform: translate(-50%,-50%); animation-duration: 35s; animation-direction: reverse; }
.ring3 { width: 1100px; height: 1100px; top: 50%; left: 60%; transform: translate(-50%,-50%); animation-duration: 45s; opacity: 0.5; }
@keyframes spinRing { from { transform: translate(-50%,-50%) rotate(0deg); } to { transform: translate(-50%,-50%) rotate(360deg); } }

/* Kunai floating */
.kunai-layer { position: absolute; inset: 0; pointer-events: none; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 2rem 2rem 2rem 5%;
  animation: fadeSlideUp 1s ease both;
}
@keyframes fadeSlideUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: rgba(255,107,0,0.15);
  border: 1px solid rgba(255,107,0,0.35);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.5rem;
}

.hero-title {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-bottom: 1.5rem;
}
.title-line1 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.title-name {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--orange);
  text-shadow: 0 0 40px rgba(255,107,0,0.5), 0 0 80px rgba(255,107,0,0.2);
  margin-bottom: 0.3rem;
}
.title-line3 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--yellow);
  text-transform: uppercase;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  letter-spacing: 0.05em;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--orange);
}
.stat span:last-child {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.stat-div {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* HERO IMAGE */
.hero-image-wrap {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 1;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  bottom: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,107,0,0.25) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-naruto {
  height: 90vh;
  max-height: 700px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(255,107,0,0.4));
  animation: floatNaruto 4s ease-in-out infinite;
}
@keyframes floatNaruto {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* ========================================
   MARQUEE
   ======================================== */
.marquee-bar {
  background: var(--orange);
  overflow: hidden;
  padding: 0.6rem 0;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 4rem;
  width: max-content;
  animation: marquee 30s linear infinite;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #000;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ========================================
   SECTIONS
   ======================================== */
.section {
  padding: 5rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--text);
  margin-bottom: 0.5rem;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* ========================================
   FEATURED VIDEO
   ======================================== */
.featured-section { padding: 5rem 5%; max-width: 1400px; margin: 0 auto; }
.featured-video-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.featured-frame {
  aspect-ratio: 16/9;
  width: 100%;
  background: #000;
}
.featured-frame iframe { width: 100%; height: 100%; }
.featured-info {
  padding: 2.5rem;
}
.featured-info h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--text);
}
.featured-info p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
  padding: 5rem 5%;
  max-width: 1400px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
.avatar-wrap {
  position: relative;
  width: 240px;
  margin: 0 auto;
}
.about-avatar {
  width: 100%;
  border-radius: 50%;
  border: 3px solid var(--orange);
  box-shadow: 0 0 40px rgba(255,107,0,0.4);
}
.avatar-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px dashed rgba(255,107,0,0.3);
  animation: spinRing 15s linear infinite;
}
.avatar-badge {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 44px;
  height: 44px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  border: 3px solid var(--dark);
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}
.about-right h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.about-right p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.8;
}
.about-list {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.about-list li {
  font-size: 1rem;
  color: var(--text);
  padding: 0.5rem;
  border-left: 3px solid var(--orange);
  padding-left: 1rem;
  background: rgba(255,107,0,0.04);
  border-radius: 0 8px 8px 0;
}
.social-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all var(--transition);
  border: 1px solid var(--border);
  background: var(--dark4);
}
.social-btn:hover { transform: translateY(-2px); border-color: var(--orange); }
.social-btn.yt { border-color: #ff0000; color: #ff4444; }
.social-btn.tw { border-color: #1da1f2; color: #1da1f2; }
.social-btn.dc { border-color: #7289da; color: #7289da; }

/* ========================================
   LIVE TEASER (HOME)
   ======================================== */
.live-teaser {
  background: linear-gradient(135deg, rgba(192,57,43,0.15), rgba(255,107,0,0.1));
  border-top: 1px solid rgba(192,57,43,0.3);
  border-bottom: 1px solid rgba(192,57,43,0.3);
  padding: 4rem 5%;
  text-align: center;
}
.live-teaser-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.live-teaser-inner h2 {
  font-family: var(--font-display);
  font-size: 2rem;
}
.live-teaser-inner p { color: var(--text-muted); font-size: 1.05rem; }
.live-pulse-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ff0000;
  box-shadow: 0 0 0 0 rgba(255,0,0,0.4);
  animation: livePulse 2s infinite;
}
@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(255,0,0,0.4); }
  70% { box-shadow: 0 0 0 15px rgba(255,0,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,0,0,0); }
}
.red-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff0000;
  box-shadow: 0 0 0 0 rgba(255,0,0,0.4);
  animation: livePulse 2s infinite;
}

/* ========================================
   PAGE HERO (VIDEOS / LIVE)
   ======================================== */
.page-hero {
  padding-top: var(--nav-h);
  min-height: 30vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,107,0,0.1) 0%, transparent 70%),
              linear-gradient(180deg, var(--dark2) 0%, var(--dark) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 3rem 5%;
  text-align: center;
  width: 100%;
}
.page-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
  background: rgba(255,107,0,0.1);
  border: 1px solid var(--border);
  padding: 0.3rem 1rem;
  border-radius: 50px;
}
.page-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.page-hero-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ========================================
   FILTER BAR
   ======================================== */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  padding: 1.5rem 5%;
  border-bottom: 1px solid var(--border);
}
.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

/* ========================================
   PLAYLIST GRID
   ======================================== */
.playlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 2rem;
}
.playlist-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all var(--transition);
}
.playlist-card:hover {
  border-color: var(--orange);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(255,107,0,0.15);
}
.playlist-card.hidden { display: none; }
.playlist-thumb {
  aspect-ratio: 16/9;
  background: #000;
  overflow: hidden;
}
.playlist-thumb iframe { width: 100%; height: 100%; pointer-events: none; }
.playlist-card:hover .playlist-thumb iframe { pointer-events: auto; }
.playlist-info { padding: 1.5rem; }
.playlist-info h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.playlist-info p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1rem; }

/* ========================================
   CHANNEL BANNER
   ======================================== */
.channel-banner {
  background: linear-gradient(135deg, var(--dark3), var(--dark4));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 5%;
}
.channel-banner-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.banner-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--orange);
  object-fit: cover;
  flex-shrink: 0;
}
.banner-text { flex: 1; }
.banner-text h2 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 0.4rem; }
.banner-text p { color: var(--text-muted); }

/* ========================================
   LIVE PAGE
   ======================================== */
.live-hero {
  padding-top: var(--nav-h);
  min-height: 35vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: radial-gradient(ellipse at center, rgba(255,0,0,0.12) 0%, transparent 70%), var(--dark2);
}
.live-hero-bg { position: absolute; inset: 0; }
.live-particle {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.6;
  animation: floatParticle var(--d) ease-in-out infinite alternate;
}
@keyframes floatParticle { from { transform: translateY(0) scale(1); opacity: 0.6; } to { transform: translateY(-30px) scale(1.5); opacity: 0.2; } }
.live-hero-content { position: relative; z-index: 1; padding: 3rem 5%; }
.live-hero-content h1 { font-family: var(--font-display); font-size: clamp(2rem, 6vw, 4rem); margin: 1rem 0 0.5rem; }
.live-hero-content p { color: var(--text-muted); font-size: 1.05rem; }

.live-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(255,0,0,0.4);
  background: rgba(255,0,0,0.1);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ff6666;
}
.live-status-badge.is-live {
  border-color: #ff0000;
  background: rgba(255,0,0,0.2);
  color: #ff0000;
}

.live-player-section { padding: 3rem 5%; max-width: 1400px; margin: 0 auto; }
.live-player-wrap {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
.live-player-main {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.live-player-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: var(--dark4);
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.live-embed-container {
  aspect-ratio: 16/9;
  background: #000;
}
.live-embed-container iframe { width: 100%; height: 100%; }

.live-chat-wrap {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 500px;
}
.live-chat-header {
  padding: 0.75rem 1.25rem;
  background: var(--dark4);
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
  font-weight: 700;
}
.live-chat-wrap iframe { flex: 1; border: none; }
.chat-fallback {
  padding: 1rem;
  text-align: center;
  background: var(--dark4);
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
}
.chat-fallback a { margin-top: 0.5rem; }

.mobile-live-link {
  display: none;
  text-align: center;
  padding: 2rem;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 16px;
  margin-top: 1.5rem;
}
.mobile-live-link p { color: var(--text-muted); margin-bottom: 1rem; }

/* ========================================
   SCHEDULE
   ======================================== */
.schedule-section { padding: 5rem 5%; max-width: 1400px; margin: 0 auto; }
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}
.schedule-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  position: relative;
  transition: all var(--transition);
}
.schedule-card:hover { border-color: var(--orange); transform: translateY(-4px); }
.schedule-card.highlight {
  border-color: rgba(255,107,0,0.5);
  background: linear-gradient(135deg, rgba(255,107,0,0.08), var(--dark3));
}
.sched-day {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.25rem;
}
.sched-time {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.sched-title { font-weight: 700; font-size: 1.05rem; margin-bottom: 0.4rem; }
.sched-desc { font-size: 0.85rem; color: var(--text-muted); }
.sched-tag {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.2rem 0.75rem;
  background: var(--orange);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
}

/* ========================================
   PAST STREAMS
   ======================================== */
.past-streams-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.past-stream-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all var(--transition);
}
.past-stream-card:hover { border-color: var(--orange); transform: translateY(-4px); }
.ps-thumb { aspect-ratio: 16/9; background: #000; }
.ps-thumb iframe { width: 100%; height: 100%; pointer-events: none; }
.ps-info { padding: 1rem 1.25rem; }
.ps-info h4 { font-weight: 700; margin-bottom: 0.25rem; }
.ps-info p { font-size: 0.8rem; color: var(--text-muted); }

/* ========================================
   NOTIFICATION SECTION
   ======================================== */
.notif-section {
  background: linear-gradient(135deg, rgba(255,107,0,0.1), rgba(192,57,43,0.1));
  border-top: 1px solid var(--border);
  padding: 5rem 5%;
  text-align: center;
}
.notif-inner { max-width: 500px; margin: 0 auto; }
.notif-icon { font-size: 3rem; margin-bottom: 1rem; }
.notif-inner h2 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 0.75rem; }
.notif-inner p { color: var(--text-muted); margin-bottom: 2rem; line-height: 1.7; }

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  padding: 2.5rem 5%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text);
}
.footer p { color: var(--text-muted); font-size: 0.85rem; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--orange); }

/* ========================================
   SCROLL REVEAL
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   MOBILE — RESPONSIVE
   ======================================== */
@media (max-width: 900px) {
  /* NAV */
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: var(--dark2);
    border-left: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: calc(var(--nav-h) + 1.5rem) 1.5rem 2rem;
    gap: 0.25rem;
    z-index: 1050;
    transition: right 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  }
  .nav-links.open { right: 0; }
  .nav-links a {
    width: 100%;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    border-radius: 8px;
  }

  /* HERO */
  .hero { flex-direction: column; min-height: auto; padding-bottom: 3rem; }
  .hero-content { max-width: 100%; padding: 3rem 1.5rem 2rem; }
  .hero-image-wrap {
    position: relative;
    width: 100%;
    height: 280px;
    margin-top: 1rem;
  }
  .hero-naruto { height: 280px; }
  .hero-stats { justify-content: center; }
  .chakra-ring { display: none; }

  /* FEATURED */
  .featured-video-wrap { grid-template-columns: 1fr; }
  .featured-info { padding: 1.5rem; }

  /* ABOUT */
  .about-section { grid-template-columns: 1fr; text-align: center; }
  .about-list { text-align: left; }
  .social-row { justify-content: center; }

  /* PLAYLIST */
  .playlist-grid { grid-template-columns: 1fr; }

  /* LIVE */
  .live-player-wrap { grid-template-columns: 1fr; }
  .live-chat-wrap { height: 300px; }
  .mobile-live-link { display: block; }
  .live-chat-wrap { display: none; }

  /* SCHEDULE */
  .schedule-grid { grid-template-columns: 1fr 1fr; }

  /* PAST STREAMS */
  .past-streams-grid { grid-template-columns: 1fr; }

  /* BANNER */
  .channel-banner-inner { flex-direction: column; text-align: center; }

  /* MUSIC BTN */
  .music-btn { bottom: 1rem; right: 1rem; }
}

@media (max-width: 600px) {
  .hero-cta { flex-direction: column; }
  .hero-cta a { text-align: center; justify-content: center; }
  .schedule-grid { grid-template-columns: 1fr; }
  .title-name { font-size: 2.8rem; }
  .section { padding: 3rem 1.25rem; }
  .featured-section, .about-section, .live-player-section, .schedule-section { padding: 3rem 1.25rem; }
}
