/* ============================================
   RAVI JANGID CHANNEL WEBSITE - STYLES
   Palette: Acid Neon + Dark
   Fonts: Bricolage Grotesque + Plus Jakarta Sans
   ============================================ */

:root {
  --neon: #CCFF00;
  --pink: #FF3CAC;
  --dark: #0D0D0D;
  --dark2: #141414;
  --dark3: #1A1A1A;
  --dark4: #222222;
  --white: #F5F5F5;
  --gray: #888888;
  --gray2: #444444;
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ---- PARTICLES ---- */
.particles {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.particle {
  position: absolute;
  font-size: 1.5rem;
  opacity: 0.08;
  animation: floatParticle linear infinite;
  user-select: none;
}
@keyframes floatParticle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.08; }
  90% { opacity: 0.08; }
  100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

/* ---- CONTAINER ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(204, 255, 0, 0.1);
  transition: var(--transition);
}
.navbar.scrolled {
  padding: 12px 40px;
  border-bottom-color: rgba(204, 255, 0, 0.2);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
}
.logo-icon { font-size: 1.6rem; }
.logo-text .accent { color: var(--neon); }
.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--neon);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--neon);
  color: var(--dark);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  transition: var(--transition);
}
.nav-cta:hover {
  background: var(--pink);
  color: var(--white);
  transform: scale(1.05);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---- MOBILE MENU ---- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--dark2);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { display: flex; flex-direction: column; gap: 24px; text-align: center; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--neon); }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--neon);
  color: var(--dark);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  border: 2px solid var(--neon);
}
.btn-primary:hover {
  background: transparent;
  color: var(--neon);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(204, 255, 0, 0.3);
}
.btn-primary.small { padding: 10px 20px; font-size: 0.85rem; }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--gray2);
  transition: var(--transition);
}
.btn-secondary:hover {
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-subscribe {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--neon);
  color: var(--dark);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  transition: var(--transition);
}
.btn-subscribe:hover {
  background: var(--pink);
  color: var(--white);
  transform: scale(1.05);
}
.btn-subscribe-big {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: var(--neon);
  color: var(--dark);
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  transition: var(--transition);
  border: 3px solid var(--neon);
}
.btn-subscribe-big:hover {
  background: transparent;
  color: var(--neon);
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(204, 255, 0, 0.4);
}

/* ---- SECTION COMMON ---- */
.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(204, 255, 0, 0.1);
  border: 1px solid rgba(204, 255, 0, 0.3);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--neon);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
}
.accent-text { color: var(--neon); }
.section-desc {
  color: var(--gray);
  font-size: 1rem;
  margin-bottom: 48px;
  max-width: 500px;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 120px 40px 80px;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  gap: 60px;
}
.hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(80px, 15vw, 200px);
  font-weight: 800;
  color: rgba(204, 255, 0, 0.03);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.hero-content {
  flex: 1;
  max-width: 580px;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 60, 172, 0.1);
  border: 1px solid rgba(255, 60, 172, 0.3);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--pink);
  margin-bottom: 24px;
  animation: fadeInDown 0.6s ease forwards;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--pink);
  border-radius: 50%;
  animation: pulse 1.5s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  animation: fadeInUp 0.7s ease 0.1s both;
}
.highlight {
  color: var(--neon);
  position: relative;
}
.highlight::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 4px;
  background: var(--neon);
  border-radius: 2px;
  opacity: 0.4;
}
.hero-sub {
  font-size: clamp(1.2rem, 3vw, 2rem);
  color: var(--gray);
  font-weight: 600;
}
.hero-desc {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.7;
  margin: 24px 0 32px;
  animation: fadeInUp 0.7s ease 0.2s both;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 36px;
  animation: fadeInUp 0.7s ease 0.3s both;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--neon);
  line-height: 1;
}
.stat-plus {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--neon);
}
.stat-label {
  font-size: 0.75rem;
  color: var(--gray);
  font-weight: 500;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--gray2);
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.4s both;
}

/* ---- HERO VISUAL ---- */
.hero-visual {
  flex: 0 0 auto;
  position: relative;
  width: 320px;
  height: 500px;
  z-index: 1;
}
.phone-mockup {
  width: 240px;
  height: 460px;
  background: var(--dark3);
  border-radius: 36px;
  border: 2px solid var(--dark4);
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  box-shadow: 0 0 60px rgba(204, 255, 0, 0.15), 0 40px 80px rgba(0,0,0,0.5);
  animation: phoneFloat 4s ease-in-out infinite;
}
@keyframes phoneFloat {
  0%, 100% { transform: translateY(0px) rotate(-2deg); }
  50% { transform: translateY(-16px) rotate(2deg); }
}
.phone-screen {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.phone-video-thumb {
  flex: 1;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}
.play-btn-big {
  width: 60px; height: 60px;
  background: rgba(204, 255, 0, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--dark);
  padding-left: 4px;
  box-shadow: 0 0 30px rgba(204, 255, 0, 0.5);
  animation: playPulse 2s ease infinite;
}
@keyframes playPulse {
  0%, 100% { box-shadow: 0 0 30px rgba(204, 255, 0, 0.5); }
  50% { box-shadow: 0 0 50px rgba(204, 255, 0, 0.8); }
}
.phone-label {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--pink);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}
.phone-info {
  padding: 16px;
  background: var(--dark2);
}
.phone-title {
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 4px;
}
.phone-views {
  font-size: 0.7rem;
  color: var(--gray);
}
.phone-glow {
  position: absolute;
  bottom: -20px; left: 50%;
  transform: translateX(-50%);
  width: 180px; height: 40px;
  background: var(--neon);
  filter: blur(30px);
  opacity: 0.3;
  border-radius: 50%;
}

/* ---- FLOATING EMOJIS ---- */
.floating-emoji {
  position: absolute;
  font-size: 2rem;
  animation: emojiFloat 3s ease-in-out infinite;
  pointer-events: none;
  filter: drop-shadow(0 0 10px rgba(204, 255, 0, 0.3));
}
.e1 { top: 10%; right: -20px; animation-delay: 0s; }
.e2 { top: 30%; right: -40px; animation-delay: 0.5s; }
.e3 { bottom: 30%; right: -10px; animation-delay: 1s; }
.e4 { top: 60%; left: -30px; animation-delay: 1.5s; }
.e5 { bottom: 10%; left: -10px; animation-delay: 2s; }
@keyframes emojiFloat {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-15px) rotate(5deg); }
}

/* ---- ABOUT SECTION ---- */
.about-section {
  padding: 100px 0;
  background: var(--dark2);
  position: relative;
  overflow: hidden;
}
.about-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(204, 255, 0, 0.05) 0%, transparent 70%);
  pointer-events: none;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.about-text strong { color: var(--white); }
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.tag {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: var(--transition);
}
.tag:hover {
  background: rgba(204, 255, 0, 0.1);
  border-color: rgba(204, 255, 0, 0.3);
  color: var(--neon);
}
.about-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-card {
  padding: 24px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.about-card:hover { transform: translateY(-4px); }
.card-icon { font-size: 2rem; margin-bottom: 12px; }
.about-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.about-card p { font-size: 0.8rem; color: var(--gray); line-height: 1.5; }
.card-neon {
  background: rgba(204, 255, 0, 0.08);
  border: 1px solid rgba(204, 255, 0, 0.2);
}
.card-neon:hover { background: rgba(204, 255, 0, 0.12); border-color: rgba(204, 255, 0, 0.4); }
.card-pink {
  background: rgba(255, 60, 172, 0.08);
  border: 1px solid rgba(255, 60, 172, 0.2);
}
.card-pink:hover { background: rgba(255, 60, 172, 0.12); border-color: rgba(255, 60, 172, 0.4); }
.card-dark {
  background: var(--dark3);
  border: 1px solid var(--dark4);
}
.card-dark:hover { border-color: var(--gray2); }
.card-outline {
  background: transparent;
  border: 2px dashed var(--gray2);
}
.card-outline:hover { border-color: var(--neon); border-style: solid; }

/* ---- VIDEOS SECTION ---- */
.videos-section {
  padding: 100px 0;
  background: var(--dark);
}
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.video-card {
  background: var(--dark2);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--dark4);
  transition: var(--transition);
}
.video-card:hover {
  transform: translateY(-6px);
  border-color: rgba(204, 255, 0, 0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.video-card.featured {
  grid-column: span 1;
  border-color: rgba(204, 255, 0, 0.2);
}
.video-thumb {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--dark3);
}
.video-thumb.shorts-thumb { aspect-ratio: 9/16; max-height: 200px; }
.video-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.video-card:hover .video-thumb img { transform: scale(1.05); }
.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.video-card:hover .video-overlay { opacity: 1; }
.play-circle {
  width: 52px; height: 52px;
  background: var(--neon);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--dark);
  padding-left: 4px;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}
.video-card:hover .play-circle { transform: scale(1); }
.video-duration {
  position: absolute;
  bottom: 8px; right: 8px;
  background: rgba(0,0,0,0.8);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
}
.video-badge {
  position: absolute;
  top: 8px; left: 8px;
  background: var(--neon);
  color: var(--dark);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}
.shorts-badge {
  background: var(--pink);
  color: white;
}
.video-info { padding: 16px; }
.video-title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.video-meta {
  display: flex;
  gap: 12px;
  font-size: 0.75rem;
  color: var(--gray);
}
.cta-card {
  background: linear-gradient(135deg, rgba(204, 255, 0, 0.08) 0%, rgba(255, 60, 172, 0.08) 100%);
  border: 2px dashed rgba(204, 255, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-inner {
  text-align: center;
  padding: 32px 24px;
}
.cta-emoji { font-size: 3rem; margin-bottom: 16px; }
.cta-inner h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.cta-inner p {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 20px;
}

/* ---- SUBSCRIBE BANNER ---- */
.subscribe-banner {
  padding: 80px 0;
  background: var(--dark2);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(204, 255, 0, 0.1);
  border-bottom: 1px solid rgba(204, 255, 0, 0.1);
}
.banner-bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(60px, 12vw, 160px);
  font-weight: 800;
  color: rgba(204, 255, 0, 0.03);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.banner-left h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.banner-left p { color: var(--gray); font-size: 1rem; }

/* ---- CONTACT SECTION ---- */
.contact-section {
  padding: 100px 0;
  background: var(--dark);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.contact-card {
  background: var(--dark2);
  border: 1px solid var(--dark4);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  transition: var(--transition);
}
.contact-card:hover {
  border-color: rgba(204, 255, 0, 0.3);
  transform: translateY(-4px);
}
.contact-icon { font-size: 2.5rem; margin-bottom: 16px; }
.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-card a {
  color: var(--neon);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}
.contact-card a:hover { color: var(--pink); }
.contact-card p { color: var(--gray); font-size: 0.9rem; }

/* ---- FOOTER ---- */
.footer {
  background: var(--dark2);
  border-top: 1px solid var(--dark4);
  padding: 48px 0 32px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.footer-tagline { color: var(--gray); font-size: 0.9rem; }
.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  color: var(--gray);
  font-size: 0.85rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--neon); }
.footer-copy { color: var(--gray2); font-size: 0.8rem; }

/* ---- ANIMATIONS ---- */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero { padding: 120px 24px 80px; gap: 40px; }
  .hero-visual { width: 260px; height: 420px; }
  .phone-mockup { width: 200px; height: 380px; }
  .videos-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 40px; }
}

@media (max-width: 768px) {
  .navbar { padding: 16px 24px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 100px 24px 60px;
    min-height: auto;
  }
  .hero-stats { justify-content: center; }
  .hero-btns { justify-content: center; }
  .hero-visual { width: 100%; height: 300px; }
  .phone-mockup { width: 160px; height: 300px; }
  .floating-emoji { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .videos-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .banner-content { flex-direction: column; text-align: center; }
  .about-card-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.8rem; }
  .about-card-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 16px; }
  .stat-num { font-size: 1.5rem; }
}