:root {
  --bg:        #07070E;
  --bg-card:   #0E0E1B;
  --orange:    #FF6B35;
  --gold:      #FFB800;
  --red:       #E63946;
  --purple:    #7B2FBE;
  --blue:      #4361EE;
  --teal:      #00B4B4;
  --white:     #F2F2F2;
  --gray:      #8A8AA0;
  --g1: linear-gradient(135deg,#FF6B35,#FFB800);
  --g2: linear-gradient(135deg,#7B2FBE,#4361EE);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
}

/* ── UTILITY ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.grad-text  { background: var(--g1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-label {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--orange); margin-bottom: 14px;
}
.section-title { font-size: clamp(28px,4vw,50px); font-weight: 900; line-height: 1.1; margin-bottom: 14px; }
.section-desc  { font-size: 16px; color: var(--gray); line-height: 1.75; max-width: 580px; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.on { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
nav {
  position: fixed; top: 0; width: 100%; z-index: 999;
  padding: 14px 36px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(7,7,14,.82); backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,107,53,.12);
  transition: background .3s;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-box {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--g1);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 15px; color: #000; letter-spacing: -1px;
}
.logo-words { display: flex; flex-direction: column; }
.logo-words .brand { font-size: 17px; font-weight: 800; background: var(--g1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
.logo-words .sub   { font-size: 10px; color: var(--gray); letter-spacing: 2.5px; text-transform: uppercase; margin-top: 2px; }
nav ul { list-style: none; display: flex; gap: 28px; }
nav ul a { color: var(--gray); text-decoration: none; font-size: 14px; font-weight: 500; transition: color .2s; }
nav ul a:hover { color: var(--orange); }
.nav-yt {
  background: var(--g1) !important; color: #000 !important; padding: 9px 22px;
  border-radius: 30px; font-weight: 800 !important; font-size: 13px !important;
  transition: transform .2s, box-shadow .2s !important;
}
.nav-yt:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,107,53,.45) !important; color: #000 !important; }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding-top: 82px; padding-bottom: 60px;
  position: relative; overflow: hidden; text-align: center;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, #1A0830 0%, transparent 70%),
              radial-gradient(ellipse 60% 50% at 90% 80%,  #0A2040 0%, transparent 60%),
              var(--bg);
}

/* grid lines */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,107,53,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,53,.04) 1px, transparent 1px);
  background-size: 56px 56px;
}

/* orbs */
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: .25;
  animation: float 9s ease-in-out infinite;
  pointer-events: none;
}
.orb1 { width: 520px; height: 520px; background: radial-gradient(circle,#FF6B35,transparent); top:-120px; right:-140px; animation-delay:0s; }
.orb2 { width: 440px; height: 440px; background: radial-gradient(circle,#7B2FBE,transparent); bottom:-120px; left:-120px; animation-delay:3s; }
.orb3 { width: 320px; height: 320px; background: radial-gradient(circle,#FFB800,transparent); top:45%; left:38%; animation-delay:6s; }

@keyframes float {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-28px) scale(1.06); }
}

.hero-content { position: relative; z-index: 2; max-width: 860px; padding: 0 20px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,107,53,.1); border: 1px solid rgba(255,107,53,.28);
  border-radius: 30px; padding: 7px 18px; font-size: 12px;
  color: var(--orange); font-weight: 600; letter-spacing: 1px;
  margin-bottom: 26px; animation: fadeDown .7s ease both;
}
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: #44FF66; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.2} }

.hero-title {
  font-size: clamp(46px,8vw,96px); font-weight: 900; line-height: 1.02;
  margin-bottom: 6px; animation: fadeUp .7s .15s ease both;
}
.hero-telugu {
  font-size: clamp(15px,2.2vw,20px); color: var(--gold);
  letter-spacing: 2.5px; margin-bottom: 22px; font-style: italic;
  animation: fadeUp .7s .28s ease both;
}
.hero-desc {
  font-size: clamp(15px,1.8vw,18px); color: var(--gray); line-height: 1.75;
  max-width: 620px; margin: 0 auto 40px; animation: fadeUp .7s .42s ease both;
}
.hero-btns {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp .7s .56s ease both;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--g1); color: #000; padding: 15px 34px;
  border-radius: 40px; font-weight: 800; font-size: 15px;
  text-decoration: none; transition: transform .25s, box-shadow .25s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(255,107,53,.5); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white); padding: 14px 34px;
  border-radius: 40px; font-weight: 700; font-size: 15px;
  text-decoration: none; border: 1.5px solid rgba(255,255,255,.18);
  transition: transform .25s, border-color .25s, color .25s;
}
.btn-secondary:hover { transform: translateY(-3px); border-color: var(--orange); color: var(--orange); }

.hero-stats {
  display: flex; gap: 44px; justify-content: center; margin-top: 58px;
  flex-wrap: wrap; animation: fadeUp .7s .7s ease both;
}
.stat-num { font-size: 34px; font-weight: 900; background: var(--g1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-lbl { font-size: 11px; color: var(--gray); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 2px; }

.scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  opacity: .4; animation: bounce 2.2s infinite;
}
.scroll-hint span { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); }
.chevron { width: 18px; height: 18px; border-right: 2px solid var(--gray); border-bottom: 2px solid var(--gray); transform: rotate(45deg); }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(7px)} }
@keyframes fadeUp   { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:none} }
@keyframes fadeDown { from{opacity:0;transform:translateY(-18px)} to{opacity:1;transform:none} }

/* ═══════════════════════════════════════════
   MARQUEE
═══════════════════════════════════════════ */
.marquee-bar {
  padding: 22px 0; overflow: hidden;
  background: rgba(255,107,53,.07);
  border-top: 1px solid rgba(255,107,53,.14);
  border-bottom: 1px solid rgba(255,107,53,.14);
}
.marquee-track { display: flex; gap: 56px; animation: marquee 22s linear infinite; width: max-content; }
.m-item { display: flex; align-items: center; gap: 14px; white-space: nowrap; font-size: 13px; font-weight: 600; color: var(--gray); letter-spacing: 1px; }
.m-dot  { width: 5px; height: 5px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ═══════════════════════════════════════════
   YOUTUBE SECTION
═══════════════════════════════════════════ */
.yt-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg) 0%, #0D0820 50%, var(--bg) 100%);
  position: relative; overflow: hidden;
}
.yt-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px; background: var(--g1);
}
.yt-header { text-align: center; margin-bottom: 48px; }
.yt-header .section-desc { margin: 0 auto; }

/* Featured player */
.yt-featured {
  position: relative; max-width: 880px; margin: 0 auto 40px;
}
.yt-glow {
  position: absolute; inset: -24px;
  background: radial-gradient(ellipse at center, rgba(255,107,53,.22), transparent 68%);
  border-radius: 30px; pointer-events: none;
}
.yt-frame {
  position: relative; padding-bottom: 56.25%; height: 0;
  border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(255,107,53,.28);
  box-shadow: 0 0 80px rgba(255,107,53,.18), 0 40px 80px rgba(0,0,0,.75);
}
.yt-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Video grid */
.yt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 16px; margin-top: 32px;
}
.yt-thumb {
  background: var(--bg-card); border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.06); cursor: pointer;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.yt-thumb:hover, .yt-thumb.active {
  transform: translateY(-4px);
  border-color: rgba(255,107,53,.45);
  box-shadow: 0 12px 32px rgba(255,107,53,.15);
}
.yt-thumb-img {
  position: relative; padding-bottom: 56.25%; overflow: hidden;
}
.yt-thumb-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.yt-play-overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.3); opacity: 0; transition: opacity .2s;
}
.yt-thumb:hover .yt-play-overlay { opacity: 1; }
.yt-play-icon {
  width: 44px; height: 44px; background: rgba(255,107,53,.9);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.yt-thumb-info { padding: 12px; }
.yt-thumb-title {
  font-size: 13px; font-weight: 600; line-height: 1.4; color: var(--white);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  margin-bottom: 6px;
}
.yt-thumb-date { font-size: 11px; color: var(--gray); }

/* Loading & error states */
.yt-loading {
  text-align: center; padding: 60px 20px; color: var(--gray); font-size: 15px;
}
.yt-loading .spin {
  display: inline-block; width: 36px; height: 36px;
  border: 3px solid rgba(255,107,53,.2); border-top-color: var(--orange);
  border-radius: 50%; animation: spin .8s linear infinite; margin-bottom: 14px;
}
@keyframes spin { to { transform: rotate(360deg); } }

.yt-cta { text-align: center; margin-top: 40px; }
.btn-yt {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg,#FF2020,#CC0000); color: #fff;
  padding: 15px 38px; border-radius: 40px; font-weight: 800; font-size: 15px;
  text-decoration: none; transition: transform .25s, box-shadow .25s;
}
.btn-yt:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(255,0,0,.42); }

/* ═══════════════════════════════════════════
   SHOWS
═══════════════════════════════════════════ */
.shows-section { padding: 100px 0; background: #060610; }
.shows-header { margin-bottom: 56px; }
.shows-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; }

.show-card {
  background: var(--bg-card); border-radius: 22px;
  border: 1px solid rgba(255,255,255,.06); overflow: hidden;
  transition: transform .35s, border-color .35s, box-shadow .35s;
}
.show-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,107,53,.3);
  box-shadow: 0 32px 64px rgba(0,0,0,.55), 0 0 36px rgba(255,107,53,.1);
}
.show-thumb {
  height: 190px; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.show-thumb.cars    { background: linear-gradient(135deg,#1C0800,#3D1200); }
.show-thumb.pod     { background: linear-gradient(135deg,#0C0024,#200050); }
.show-thumb.celeb   { background: linear-gradient(135deg,#001C1C,#004040); }
.show-thumb.collab  { background: linear-gradient(135deg,#1C1800,#3D3200); }

.show-emoji {
  font-size: 76px; filter: drop-shadow(0 0 18px rgba(255,107,53,.5));
  transition: transform .35s;
}
.show-card:hover .show-emoji { transform: scale(1.18) rotate(4deg); }

.show-badge {
  position: absolute; top: 14px; left: 14px;
  padding: 5px 13px; border-radius: 20px;
  font-size: 10px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase;
}
.b-orange { background: rgba(255,107,53,.9);  color: #000; }
.b-purple { background: rgba(123,47,190,.9);  color: #fff; }
.b-teal   { background: rgba(0,180,180,.9);   color: #000; }
.b-gold   { background: rgba(255,184,0,.9);   color: #000; }

.show-body { padding: 22px; }
.show-body h3 { font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.show-body p  { font-size: 13.5px; color: var(--gray); line-height: 1.72; margin-bottom: 20px; }
.show-foot { display: flex; align-items: center; justify-content: space-between; }
.show-tag2 { font-size: 12px; color: var(--orange); font-weight: 600; }
.watch-a { font-size: 13px; color: var(--gray); text-decoration: none; transition: color .2s; display: flex; align-items: center; gap: 5px; }
.watch-a:hover { color: var(--orange); }

/* ── ABOUT ── */
.about-section { padding: 100px 0; background: linear-gradient(135deg, #060610 0%, #0D0822 100%); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 0; }

.about-visual { position: relative; }
.about-box {
  background: linear-gradient(135deg,#1A0032,#0A2040);
  border-radius: 22px; height: 390px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  border: 1px solid rgba(255,107,53,.18);
}
.about-bg-text {
  position: absolute; font-size: 140px; font-weight: 900;
  opacity: .055; color: var(--orange); pointer-events: none; user-select: none;
}
.about-icons {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  padding: 36px; position: relative; z-index: 1; width: 100%;
}
.ai-item {
  background: rgba(255,255,255,.05); border-radius: 14px; padding: 18px;
  text-align: center; border: 1px solid rgba(255,255,255,.06);
  transition: background .2s;
}
.ai-item:hover { background: rgba(255,107,53,.08); }
.ai-item .emo { font-size: 34px; margin-bottom: 6px; }
.ai-item .lbl { font-size: 11px; color: var(--gray); font-weight: 600; }
.about-tag {
  position: absolute; bottom: -18px; right: -18px;
  background: var(--g1); color: #000; padding: 14px 22px;
  border-radius: 14px; font-weight: 800; font-size: 13px;
  box-shadow: 0 14px 36px rgba(255,107,53,.4);
}

.about-text .section-desc { margin-bottom: 22px; }
.features { display: flex; flex-direction: column; gap: 18px; margin-top: 30px; }
.feat {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px; border-radius: 14px;
  border: 1px solid rgba(255,255,255,.05);
  background: rgba(255,255,255,.02);
  transition: border-color .25s, background .25s;
}
.feat:hover { border-color: rgba(255,107,53,.25); background: rgba(255,107,53,.04); }
.feat-ico {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  background: rgba(255,107,53,.14); border: 1px solid rgba(255,107,53,.28);
  display: flex; align-items: center; justify-content: center; font-size: 17px;
}
.feat-txt h4 { font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.feat-txt p  { font-size: 13px; color: var(--gray); }

/* ═══════════════════════════════════════════
   COMMUNITY
═══════════════════════════════════════════ */
.comm-section {
  padding: 100px 0; background: #050509;
  text-align: center; position: relative; overflow: hidden;
}
.comm-section::before {
  content: 'తెలుగు';
  position: absolute; font-size: 280px; font-weight: 900;
  opacity: .018; color: var(--gold);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none; white-space: nowrap;
}
.comm-header .section-desc { margin: 0 auto; }
.comm-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 56px; }
.comm-card {
  background: var(--bg-card); border-radius: 20px; padding: 36px 24px;
  border: 1px solid rgba(255,255,255,.06); position: relative; overflow: hidden;
  transition: transform .3s, border-color .3s;
}
.comm-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
}
.comm-card:nth-child(1)::before { background: var(--g1); }
.comm-card:nth-child(2)::before { background: var(--g2); }
.comm-card:nth-child(3)::before { background: linear-gradient(135deg,#00B4D8,#0077B6); }
.comm-card:hover { transform: translateY(-6px); border-color: rgba(255,107,53,.2); }
.comm-emo { font-size: 46px; margin-bottom: 14px; }
.comm-card h3 { font-size: 19px; font-weight: 800; margin-bottom: 10px; }
.comm-card p  { font-size: 14px; color: var(--gray); line-height: 1.72; }

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.contact-section {
  padding: 100px 0;
  background: linear-gradient(135deg,#0A0018,#001430);
  position: relative; overflow: hidden;
}
.contact-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 80px; align-items: start; }
.contact-title { font-size: clamp(28px,4vw,52px); font-weight: 900; line-height: 1.12; margin-bottom: 18px; }
.contact-desc { font-size: 16px; color: var(--gray); line-height: 1.75; margin-bottom: 34px; }
.socials { display: flex; gap: 14px; flex-wrap: wrap; }
.soc-btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 12px 22px; border-radius: 12px; font-size: 14px; font-weight: 700;
  text-decoration: none; transition: transform .2s, box-shadow .2s;
  border: 1px solid rgba(255,255,255,.09);
}
.soc-btn:hover { transform: translateY(-3px); }
.soc-yt   { background: rgba(255,0,0,.1);    color: #FF4444; }
.soc-ig   { background: rgba(225,48,108,.1); color: #E1306C; }
.soc-loc  { background: rgba(255,184,0,.1);  color: var(--gold); }

.cform {
  background: var(--bg-card); border-radius: 22px; padding: 34px;
  border: 1px solid rgba(255,255,255,.06);
}
.cform h3 { font-size: 19px; font-weight: 800; margin-bottom: 22px; }
.fgrp { margin-bottom: 14px; }
.fgrp input, .fgrp textarea {
  width: 100%; background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08); border-radius: 11px;
  padding: 13px 16px; font-size: 14px; color: var(--white);
  font-family: inherit; outline: none; transition: border-color .2s;
}
.fgrp input::placeholder, .fgrp textarea::placeholder { color: var(--gray); }
.fgrp input:focus, .fgrp textarea:focus { border-color: rgba(255,107,53,.5); }
.fgrp textarea { height: 96px; resize: none; }
.fsubmit {
  width: 100%; padding: 14px; border-radius: 11px;
  background: var(--g1); color: #000; font-size: 14px; font-weight: 800;
  border: none; cursor: pointer; transition: transform .2s, box-shadow .2s;
}
.fsubmit:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,107,53,.4); }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
  background: #030305; padding: 36px 36px;
  border-top: 1px solid rgba(255,255,255,.05);
}
.footer-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 18px;
}
.footer-copy { font-size: 13px; color: var(--gray); }
.footer-copy span { color: var(--orange); }
.footer-links { display: flex; gap: 22px; }
.footer-links a { color: var(--gray); text-decoration: none; font-size: 13px; transition: color .2s; }
.footer-links a:hover { color: var(--orange); }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 900px) {
  nav { padding: 13px 18px; }
  nav ul { display: none; }
  .about-grid   { grid-template-columns: 1fr; gap: 44px; }
  .comm-grid    { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
}
@media (max-width: 600px) {
  .hero-stats { gap: 22px; }
  footer { padding: 28px 18px; }
  .footer-inner { flex-direction: column; text-align: center; }
}

.marquee-container {
  width: 100vw;
  overflow: hidden;
  background: transparent;
  padding: 20px 0;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollMarquee 30s linear infinite;
}
.marquee-track:hover {
  animation-play-state: paused;
}
.video-card {
  width: 280px; /* Keeps the videos small */
  height: 157px; /* Perfect 16:9 ratio */
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}
.video-card iframe {
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: auto;
}
@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.33%); } /* Matches the triple array duplication */
}
