/* ==========================================================================
   NebulaView IPTV - Premium White Minimalistic Styles
   ========================================================================== */

/* --------------------------------------------------------------------------
   ROOT VARIABLES
   -------------------------------------------------------------------------- */
:root {
  --bg: #FAFBFC;
  --bg-alt: #F0F2F5;
  --bg-dark: #0A0A1A;
  --surface: #FFFFFF;
  --glass: rgba(255,255,255,0.72);
  --glass-dark: rgba(10,10,26,0.85);
  --ink: #0A0A1A;
  --ink-soft: #2D2D3F;
  --muted: #6B7280;
  --muted-2: #9CA3AF;
  --accent: #6C2BD9;
  --accent-2: #0EA5E9;
  --accent-3: #FF6B6B;
  --gradient: linear-gradient(135deg, #6C2BD9, #0EA5E9);
  --gradient-hot: linear-gradient(135deg, #FF6B6B, #F59E0B);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow: 0 8px 32px rgba(0,0,0,0.08);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.12);
  --shadow-glow: 0 8px 40px rgba(108,43,217,0.25);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  --font-mono: 'Fira Code', monospace;
}

/* --------------------------------------------------------------------------
   RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.1;
  color: var(--ink);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s var(--ease);
}

ul, ol {
  list-style: none;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --------------------------------------------------------------------------
   TYPOGRAPHY UTILITIES
   -------------------------------------------------------------------------- */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* --------------------------------------------------------------------------
   1. PRELOADER
   -------------------------------------------------------------------------- */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--surface);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader .brand-orb {
  width: 80px;
  height: 80px;
  margin-bottom: 32px;
  animation: pulseLogo 2s infinite alternate;
}

.preloader .loading-bar-wrap {
  width: 200px;
  height: 4px;
  background: var(--bg-alt);
  border-radius: 4px;
  overflow: hidden;
}

.preloader .loading-bar {
  height: 100%;
  width: 0;
  background: var(--gradient);
  animation: loadFill 1.5s ease-out forwards;
}

/* --------------------------------------------------------------------------
   2. HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 26, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.3s var(--ease);
}

.site-header.scrolled {
  background: rgba(8, 8, 20, 0.95);
  border-bottom-color: rgba(108, 43, 217, 0.4);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 24px rgba(108, 43, 217, 0.25);
}

.nav-container, .nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-brand, .brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 900;
  color: #FFFFFF !important;
  text-decoration: none;
}

.brand-orb, .brand-mark {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(108, 43, 217, 0.4), rgba(14, 165, 233, 0.4));
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 20px rgba(108, 43, 217, 0.5);
  transition: transform 0.3s var(--ease);
}

.nav-brand:hover .brand-orb, .brand:hover .brand-mark {
  transform: scale(1.1) rotate(5deg);
}

.brand-name {
  color: #FFF;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-name em {
  font-style: normal;
  color: #0EA5E9;
  background: linear-gradient(135deg, #0EA5E9, #38BDF8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 12px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.nav-links a {
  font-weight: 500;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 18px;
  border-radius: 100px;
  transition: all 0.3s var(--ease);
  position: relative;
  text-decoration: none;
}

.nav-links a:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.12);
}

.nav-links a.active {
  color: #FFFFFF !important;
  background: var(--gradient) !important;
  box-shadow: 0 4px 20px rgba(108, 43, 217, 0.45);
  font-weight: 700;
}

.nav-links a::after {
  display: none !important;
}

.nav-badge-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #F87171;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background: #EF4444;
  border-radius: 50%;
  box-shadow: 0 0 8px #EF4444;
  animation: pulseLive 1.5s infinite;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-glow {
  background: var(--gradient);
  color: #FFF !important;
  padding: 10px 24px;
  border-radius: 100px;
  font-weight: 700;
  box-shadow: var(--shadow-glow);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 48px rgba(108,43,217,0.5);
}

.btn-glass {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  color: #FFF !important;
  padding: 10px 24px;
  border-radius: 100px;
  font-weight: 600;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 30px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1002;
}

.nav-hamburger span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: #FFF;
  border-radius: 4px;
  transition: all 0.3s var(--ease);
}

/* --------------------------------------------------------------------------
   3. MOBILE NAV
   -------------------------------------------------------------------------- */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 26, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  padding: 40px 24px;
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFF;
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
}

.mobile-nav-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.mobile-nav nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 340px;
}

.mobile-nav nav a {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  padding: 14px 24px;
  width: 100%;
  text-align: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
}

.mobile-nav nav a.active, .mobile-nav nav a:hover {
  background: var(--gradient);
  color: #FFF;
  box-shadow: 0 8px 30px rgba(108, 43, 217, 0.4);
}

/* --------------------------------------------------------------------------
   4. HERO (.hero-cosmos)
   -------------------------------------------------------------------------- */
.hero-cosmos {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 80px;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.42) saturate(1.3) contrast(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(10,10,26,0.55) 0%, rgba(10,10,26,0.85) 100%),
              linear-gradient(to bottom, rgba(10,10,26,0.4) 0%, rgba(10,10,26,0.9) 100%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 8px 20px;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: #FFF;
  margin-bottom: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10B981;
  animation: blink 1.8s ease infinite;
}

.hero-container h1 {
  color: #FFF;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-desc {
  color: rgba(255,255,255,0.85);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 680px;
  line-height: 1.7;
  margin-bottom: 40px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.4);
}

.hero-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.hero-cta-row .btn-glow,
.hero-cta-row .btn-glass {
  color: #FFF !important;
  padding: 16px 36px;
  font-size: 1.05rem;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-cta-row .btn-glass {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.25);
  transition: all 0.3s ease;
}

.hero-cta-row .btn-glass:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}

.hero-stats-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  background: rgba(10,10,26,0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 18px 40px;
  border-radius: 100px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-box .stat-num {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  color: #FFF;
  line-height: 1;
}

.stat-box .stat-label {
  color: rgba(255,255,255,0.65);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.15);
}

/* --------------------------------------------------------------------------
   5. HOLO SCREEN
   -------------------------------------------------------------------------- */
.holo-screen {
  position: relative;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 12px;
  box-shadow: var(--shadow-lg), 0 0 80px rgba(108,43,217,0.2);
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
  transition: transform 0.5s var(--ease);
}

.holo-screen:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.screen-header {
  display: flex;
  gap: 8px;
  padding: 8px 12px 16px;
}

.screen-header span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.screen-header span:nth-child(1) { background: #FF5F56; }
.screen-header span:nth-child(2) { background: #FFBD2E; }
.screen-header span:nth-child(3) { background: #27C93F; }

.screen-video-wrap {
  aspect-ratio: 16/10;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  background: #000;
}

.screen-video-wrap img,
.screen-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.holo-badge {
  position: absolute;
  background: rgba(10,10,26,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  color: #FFF;
  padding: 8px 16px;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: floatBadge 3s ease-in-out infinite alternate;
}

.holo-badge.b1 { top: -20px; right: 40px; animation-delay: 0s; }
.holo-badge.b2 { bottom: 40px; left: -30px; animation-delay: 1s; }

/* --------------------------------------------------------------------------
   6. SCROLL HINT
   -------------------------------------------------------------------------- */
.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  z-index: 2;
}

.mouse {
  width: 24px;
  height: 36px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 12px;
  position: relative;
}

.mouse::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 6px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  animation: scrollWheel 2s infinite;
}

/* --------------------------------------------------------------------------
   7. TICKER BELT
   -------------------------------------------------------------------------- */
.ticker-belt {
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  background: var(--surface);
  padding: 20px 0;
  display: flex;
}

.ticker-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: tickerRun 35s linear infinite;
  align-items: center;
}

.ticker-belt:hover .ticker-track {
  animation-play-state: paused;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.ticker-item img {
  height: 32px;
  filter: grayscale(1) opacity(0.6);
  transition: filter 0.3s;
}

.ticker-item:hover img {
  filter: grayscale(0) opacity(1);
}

/* --------------------------------------------------------------------------
   8. CHANNEL UNIVERSE (.universe-section)
   -------------------------------------------------------------------------- */
.universe-section {
  padding: 120px 0;
  background: var(--bg);
}

.universe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.universe-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}

.universe-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
}

.ucard-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(108,43,217,0.08) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  border-radius: 50%;
  pointer-events: none;
  transition: all 0.3s ease;
}

.universe-card:hover .ucard-glow {
  background: radial-gradient(circle, rgba(14,165,233,0.12) 0%, transparent 70%);
  transform: scale(1.5);
}

.ucard-icon {
  font-size: 2.6rem;
  margin-bottom: 24px;
  display: inline-block;
}

.ucard-title {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.ucard-desc {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.ucard-count {
  font-family: var(--font-mono);
  color: var(--accent-2);
  font-weight: 600;
  font-size: 0.9rem;
}

.featured-card {
  background: linear-gradient(135deg, rgba(108,43,217,0.03), rgba(14,165,233,0.03));
  border: 1px solid rgba(108,43,217,0.2);
}

/* --------------------------------------------------------------------------
   9. IMMERSIVE VIDEO SECTION (.immersive-video-section)
   -------------------------------------------------------------------------- */
.immersive-video-section {
  min-height: 80vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.ivs-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) saturate(1.4);
  z-index: 0;
}

.ivs-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,26,0.95) 0%, rgba(10,10,26,0.7) 40%, transparent 100%);
  z-index: 1;
}

.ivs-overlay-right {
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(10,10,26,0.95) 0%, rgba(10,10,26,0.7) 40%, transparent 100%);
  z-index: 1;
}

.ivs-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 100px 0;
  color: #FFF;
}

.ivs-content-right {
  margin-left: auto;
  text-align: right;
}

.ivs-content h2 {
  color: #FFF;
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 24px;
}

.ivs-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.ivs-tag {
  display: inline-block;
  font-family: var(--font-mono);
  text-transform: uppercase;
  color: var(--accent-2);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.ivs-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ivs-content-right .ivs-features {
  justify-content: flex-end;
}

.ivs-feat {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   10. 3D FLIP CARDS (.flip-section)
   -------------------------------------------------------------------------- */
.flip-section {
  padding: 120px 0;
  background: var(--bg-alt);
}

.flip-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.flip-card-3d {
  height: 420px;
  perspective: 1400px;
  cursor: pointer;
}

.fc-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 1.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.flip-card-3d:hover .fc-inner {
  transform: rotateY(180deg);
}

.fc-front, .fc-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.fc-front {
  background: var(--surface);
  border: 1px solid rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.fc-front::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--gradient);
}

.fc-icon {
  font-size: 3rem;
  margin-bottom: auto;
}

.fc-title {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.fc-hint {
  color: var(--muted);
  font-size: 0.9rem;
}

.fc-back {
  background: var(--bg-dark);
  transform: rotateY(180deg);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
  color: #FFF;
}

.fc-back img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  z-index: 0;
}

.fc-back::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,26,0.9) 0%, rgba(10,10,26,0.4) 100%);
  z-index: 1;
}

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

.fc-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255,255,255,0.9);
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 16px;
}

.fc-tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.fc-tech-tags span {
  font-size: 0.8rem;
  border: 1px solid var(--accent-2);
  color: var(--accent-2);
  padding: 4px 12px;
  border-radius: 100px;
}

/* --------------------------------------------------------------------------
   11. VOD RAIL (.vod-section)
   -------------------------------------------------------------------------- */
.vod-section {
  padding: 120px 0;
  background: var(--bg);
  position: relative;
}

.vod-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.vod-rail {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 40px;
  scrollbar-width: none; /* Firefox */
  cursor: grab;
}

.vod-rail::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.vod-rail:active {
  cursor: grabbing;
}

.vod-tile {
  flex: 0 0 auto;
  width: 240px;
  aspect-ratio: 2/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.vod-tile:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: var(--shadow-lg);
  z-index: 10;
}

.vod-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.6);
  transition: filter 0.4s var(--ease);
}

.vod-tile:hover img {
  filter: saturate(1.15);
}

.vod-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 50%);
  pointer-events: none;
}

.vod-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  z-index: 2;
  color: #FFF;
}

.vod-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.vod-meta {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  display: flex;
  gap: 12px;
}

.vod-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  color: #FFF;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 100px;
  z-index: 2;
  border: 1px solid rgba(255,255,255,0.2);
}

.vod-badge.live {
  background: rgba(255,107,107,0.2);
  border-color: rgba(255,107,107,0.5);
  color: #FF6B6B;
}

.vod-badge.live::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #FF6B6B;
  border-radius: 50%;
  margin-right: 6px;
  animation: pulseLive 1.5s infinite;
}

.vod-controls {
  display: flex;
  gap: 12px;
}

.vod-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease);
}

.vod-arrow:hover {
  background: var(--bg-alt);
  transform: scale(1.05);
}

/* --------------------------------------------------------------------------
   12. PLANS (.plans-section)
   -------------------------------------------------------------------------- */
.plans-section {
  padding: 120px 0;
  background: var(--bg-alt);
  text-align: center;
}

.plans-galaxy {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-top: 60px;
  text-align: left;
}

.plan-nebula {
  background: var(--surface);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background 0.3s var(--ease);
}

.plan-nebula:hover {
  background: rgba(108,43,217,0.02);
}

.plan-featured {
  background: linear-gradient(to bottom, #FAFBFC, #F4F6F8);
  transform: scale(1.02);
  z-index: 2;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(108,43,217,0.15);
}

.plan-crown {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: #FFF;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 24px;
  border-radius: 0 0 12px 12px;
  letter-spacing: 1px;
}

.plan-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.plan-featured .plan-name {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.plan-amount {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--ink);
}

.plan-period {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 32px;
}

.plan-perks {
  margin-bottom: 40px;
  flex-grow: 1;
}

.plan-perks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.perk-check {
  color: #10B981;
  font-size: 1.2rem;
  line-height: 1;
  flex-shrink: 0;
}

.btn-plan {
  width: 100%;
  padding: 16px;
  border: 1px solid var(--accent-2);
  color: var(--accent-2);
  border-radius: 100px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s var(--ease);
}

.btn-plan:hover {
  background: var(--accent-2);
  color: #FFF;
}

.plan-featured .btn-plan {
  background: var(--gradient);
  color: #FFF;
  border: none;
  box-shadow: var(--shadow-glow);
}

.plan-featured .btn-plan:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(108,43,217,0.3);
}

/* --------------------------------------------------------------------------
   13. HOW IT WORKS (.how-section)
   -------------------------------------------------------------------------- */
.how-section {
  padding: 120px 0;
  background: var(--surface);
  text-align: center;
}

.steps-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 80px;
  position: relative;
}

.step-connector {
  position: absolute;
  top: 40px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: linear-gradient(to right, rgba(108,43,217,0.1), rgba(14,165,233,0.1));
  z-index: 0;
}

.step-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.step-bubble {
  width: 80px;
  height: 80px;
  background: var(--surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.step-ring {
  position: absolute;
  inset: -4px;
  border: 1px dashed var(--accent);
  border-radius: 50%;
  animation: spinRing 8s linear infinite;
  opacity: 0.3;
}

.step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-desc {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 280px;
}

/* --------------------------------------------------------------------------
   14. DEVICES (.devices-section)
   -------------------------------------------------------------------------- */
.devices-section {
  padding: 120px 0;
  background: var(--bg);
  overflow: hidden;
}

.devices-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.device-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 60px rgba(14,165,233,0.15);
  transform: perspective(1000px) rotateY(5deg);
}

.device-visual video,
.device-visual img {
  width: 100%;
  display: block;
}

.device-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

.device-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: var(--surface);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 100px;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease);
}

.device-chip:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow);
  color: var(--accent);
}

.device-chip i {
  font-size: 1.4rem;
}

/* --------------------------------------------------------------------------
   15. TESTIMONIALS (.testimonials-section)
   -------------------------------------------------------------------------- */
.testimonials-section {
  padding: 120px 0;
  background: var(--bg-alt);
}

.testimonials-carousel {
  position: relative;
  max-width: 900px;
  margin: 60px auto 0;
}

.testimonial-track {
  position: relative;
  min-height: 300px;
}

.testimonial-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(30px);
  transition: 0.7s ease-out;
  pointer-events: none;
  background: var(--surface);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.testimonial-card.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
  pointer-events: auto;
}

.tc-stars {
  color: #F59E0B;
  font-size: 1.2rem;
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  gap: 4px;
}

.tc-quote {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 32px;
  font-style: italic;
}

.tc-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.tc-avatar {
  width: 56px;
  height: 56px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-weight: 700;
  font-size: 1.2rem;
}

.tc-info h5 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.tc-info span {
  color: var(--muted);
  font-size: 0.85rem;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.carousel-dot {
  width: 12px;
  height: 4px;
  background: rgba(0,0,0,0.1);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

.carousel-dot.active {
  width: 32px;
  background: var(--gradient);
}

/* --------------------------------------------------------------------------
   16. CTA SECTION (.cta-cosmos-section)
   -------------------------------------------------------------------------- */
.cta-cosmos-section {
  padding: 140px 0;
  position: relative;
  text-align: center;
  color: #FFF;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.3);
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,26,0.9), rgba(10,10,26,0.5));
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  color: #FFF;
  font-size: clamp(2.5rem, 4vw, 4rem);
  margin-bottom: 24px;
}

.cta-content p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* --------------------------------------------------------------------------
   17. BLOG (.blog-section)
   -------------------------------------------------------------------------- */
.blog-section {
  padding: 120px 0;
  background: var(--bg);
}

.blog-nebula-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 60px;
}

.blog-nebula-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}

.blog-nebula-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.featured-blog {
  grid-row: span 2;
}

.bnc-img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.featured-blog .bnc-img-wrap {
  aspect-ratio: 4/3;
}

.bnc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.blog-nebula-card:hover .bnc-img-wrap img {
  transform: scale(1.05);
}

.bnc-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gradient);
  color: #FFF;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 6px 16px;
  border-radius: 100px;
  z-index: 2;
}

.bnc-content {
  padding: 32px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.bnc-meta {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.bnc-title {
  font-size: 1.4rem;
  margin-bottom: 16px;
  line-height: 1.3;
}

.featured-blog .bnc-title {
  font-size: 2rem;
}

.bnc-excerpt {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
  flex-grow: 1;
}

.bnc-link {
  color: var(--accent-2);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}

.bnc-link:hover {
  gap: 12px;
}

/* --------------------------------------------------------------------------
   18. FOOTER (.site-footer)
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--bg-alt);
  padding: 80px 0 32px;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 80px;
}

.footer-brand {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
}

.footer-desc {
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 300px;
}

.footer-links-col h4 {
  font-family: var(--font-mono);
  color: var(--accent-2);
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-col a {
  color: var(--muted);
  transition: color 0.3s;
}

.footer-links-col a:hover {
  color: var(--ink);
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 100px;
  margin-bottom: 16px;
  background: var(--surface);
  transition: all 0.3s var(--ease);
}

.contact-pill.whatsapp:hover {
  border-color: #25D366;
  color: #25D366;
}

.contact-pill.telegram:hover {
  border-color: #0088CC;
  color: #0088CC;
}

.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,0,0,0.05);
}

.footer-social a:hover {
  background: var(--accent);
  color: #FFF;
  border-color: var(--accent);
}

/* --------------------------------------------------------------------------
   19. PROMO MODAL (.promo-modal)
   -------------------------------------------------------------------------- */
.promo-modal {
  position: fixed;
  inset: 0;
  background: rgba(10,10,26,0.8);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease);
}

.promo-modal.show {
  opacity: 1;
  visibility: visible;
}

.promo-galaxy-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 48px;
  max-width: 500px;
  width: 90%;
  position: relative;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transform: scale(0.9);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.promo-modal.show .promo-galaxy-card {
  transform: scale(1);
}

.pgc-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% -20%, rgba(108,43,217,0.1) 0%, transparent 70%);
  border-radius: var(--radius-xl);
  pointer-events: none;
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: var(--bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: background 0.3s;
}

.modal-close-btn:hover {
  background: var(--accent);
  color: #FFF;
}

.promo-tag {
  display: inline-block;
  background: rgba(255,107,107,0.1);
  color: #FF6B6B;
  padding: 6px 16px;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  margin-bottom: 24px;
}

.promo-galaxy-card h3 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.promo-galaxy-card p {
  color: var(--muted);
  margin-bottom: 32px;
}

/* --------------------------------------------------------------------------
   20. FLOATING CONTACTS (.floating-contact-bar)
   -------------------------------------------------------------------------- */
.floating-contact-bar {
  position: fixed;
  bottom: 24px;
  left: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.fcb-btn {
  display: flex;
  align-items: center;
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 100px;
  height: 48px;
  max-width: 48px;
  overflow: hidden;
  padding: 0 14px;
  box-shadow: var(--shadow-sm);
  transition: max-width 0.4s var(--ease), background 0.3s;
  white-space: nowrap;
}

.fcb-btn i {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.fcb-btn span {
  margin-left: 12px;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s 0.1s;
}

.fcb-btn:hover {
  max-width: 200px;
}

.fcb-btn:hover span {
  opacity: 1;
}

.fcb-whatsapp { color: #25D366; }
.fcb-telegram { color: #0088CC; }

/* --------------------------------------------------------------------------
   21. CHATBOT (.chatbot-widget)
   -------------------------------------------------------------------------- */
.chatbot-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
}

.chatbot-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-glow);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.chatbot-toggle:hover {
  transform: scale(1.1) rotate(-5deg);
}

.chatbot-panel {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 320px;
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform-origin: bottom right;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.chatbot-panel.hidden {
  transform: scale(0.85);
  opacity: 0;
  pointer-events: none;
}

.chatbot-header {
  background: var(--glass-dark);
  color: #FFF;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.chatbot-header h5 {
  color: #FFF;
  margin: 0;
}

.chatbot-body {
  padding: 20px;
  height: 300px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.message {
  padding: 10px 16px;
  border-radius: 16px;
  font-size: 0.9rem;
  max-width: 85%;
}

.message.bot {
  background: rgba(108,43,217,0.08);
  color: var(--ink);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.message.user {
  background: var(--gradient);
  color: #FFF;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chatbot-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.chatbot-quick button {
  background: var(--surface);
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.8rem;
  transition: all 0.3s;
}

.chatbot-quick button:hover {
  background: var(--accent);
  color: #FFF;
}

.chatbot-controls {
  padding: 16px;
  border-top: 1px solid rgba(0,0,0,0.05);
  display: flex;
  gap: 8px;
  background: var(--surface);
}

.chatbot-controls input {
  flex-grow: 1;
  background: var(--bg-alt);
  padding: 10px 16px;
  border-radius: 100px;
  font-size: 0.9rem;
}

.chatbot-controls button {
  width: 40px;
  height: 40px;
  background: var(--accent-2);
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   22. SCROLL REVEAL
   -------------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
}

[data-reveal].revealed {
  animation: revealUp 0.9s ease-out forwards;
}

/* --------------------------------------------------------------------------
   23. SECTION LABELS & COMMONS
   -------------------------------------------------------------------------- */
.section {
  padding: 120px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gradient);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 24px;
}

.section-desc {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   24. INNER PAGE COMPATIBILITY
   -------------------------------------------------------------------------- */
.page-shell {
  padding-top: 80px;
}

.page-banner {
  padding: 100px 0;
  background: var(--bg-dark);
  color: #FFF;
  text-align: center;
  position: relative;
}

.page-banner.no-video {
  background: var(--bg-alt);
  color: var(--ink);
}

.eyebrow {
  font-family: var(--font-mono);
  color: var(--accent-2);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: var(--surface);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: var(--shadow-sm);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--accent);
}

.plan-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: var(--shadow-sm);
}

.plan-price {
  font-size: 3rem;
  font-weight: 900;
  font-family: var(--font-display);
}

.plan-list {
  margin: 20px 0;
}

.tag {
  background: var(--accent-2);
  color: #FFF;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.8rem;
}

.featured-plan {
  border-color: var(--accent);
  position: relative;
}
.featured-plan::after {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient);
  border-radius: 4px 4px 0 0;
}

.timeline {
  border-left: 2px solid var(--bg-alt);
  padding-left: 24px;
}

.step-card {
  margin-bottom: 40px;
  position: relative;
}

.testimonial-band {
  background: var(--bg-alt);
  padding: 80px 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.quote-card {
  background: var(--surface);
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.blog-post {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.article-meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}

.contact-card {
  background: var(--surface);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.contact-action-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-action {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
}

.split-layout {
  display: flex;
  gap: 60px;
  align-items: center;
}

.device-cloud {
  position: relative;
  width: 100%;
  height: 400px;
}

.comparison-wrapper {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th, .comparison-table td {
  padding: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  text-align: left;
}

.billing-toggle {
  display: inline-flex;
  background: var(--bg-alt);
  padding: 4px;
  border-radius: 100px;
  margin-bottom: 40px;
}

.billing-toggle span {
  padding: 8px 24px;
  border-radius: 100px;
  cursor: pointer;
}

.billing-toggle span.active {
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.faq-card {
  background: var(--surface);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  padding: 24px;
}

.faq-card p {
  display: none;
  margin-top: 16px;
  color: var(--muted);
}

.faq-card.open p {
  display: block;
}

.floating-chip {
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  padding: 12px 24px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.floating-chip-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.preview-article {
  padding: 20px;
}

.text-link {
  color: var(--accent);
  text-decoration: underline;
}

.pulse-strip {
  background: var(--gradient);
  height: 4px;
  width: 100%;
}

.pulse-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.section-heading {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.wide-heading {
  font-size: 3.5rem;
  text-align: center;
}

.chat-inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.chat-inquiry-form input, .chat-inquiry-form textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-sm);
  background: var(--bg-alt);
}

.chat-form-status {
  padding: 12px;
  border-radius: var(--radius-sm);
  background: #E8F5E9;
  color: #2E7D32;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form .form-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form .form-row span {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--ink-soft);
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: var(--radius-sm);
  background: var(--bg-alt);
  color: var(--ink);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(108, 43, 217, 0.35);
  box-shadow: 0 0 0 4px rgba(108, 43, 217, 0.08);
}

.contact-form select {
  appearance: none;
}

.form-row-message textarea {
  min-height: 140px;
  resize: vertical;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.form-actions button {
  flex: 1 1 180px;
}

.form-status {
  margin-top: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

@media (max-width: 900px) {
  .form-actions {
    flex-direction: column;
  }
}

/* --------------------------------------------------------------------------
   25. RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-overlay::after {
    left: 50%;
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .holo-screen {
    display: none;
  }
  .flip-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .plans-galaxy {
    grid-template-columns: repeat(2, 1fr);
  }
  .universe-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }
  .nav-links, .nav-actions {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }
  .universe-grid, .flip-cards-grid, .plans-galaxy, .steps-timeline, .devices-showcase, .blog-nebula-grid {
    grid-template-columns: 1fr;
  }
  .step-connector {
    display: none;
  }
  .ivs-content {
    padding: 60px 24px;
    text-align: center;
    margin: 0 auto;
  }
  .ivs-features {
    justify-content: center;
  }
  .footer-top-grid {
    grid-template-columns: 1fr;
  }
  .contact-layout, .split-layout {
    grid-template-columns: 1fr;
    flex-direction: column;
  }
  .testimonial-card {
    padding: 24px;
  }
  .tc-quote {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .ticker-belt {
    display: none;
  }
  .hero-cta-row {
    flex-direction: column;
    width: 100%;
  }
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .plan-amount {
    font-size: 2.8rem;
  }
  .promo-galaxy-card {
    padding: 32px 24px;
  }
}

/* --------------------------------------------------------------------------
   ANIMATIONS
   -------------------------------------------------------------------------- */
@keyframes floatBadge {
  from { transform: translateY(0) rotate(-2deg); }
  to { transform: translateY(-14px) rotate(2deg); }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

@keyframes tickerRun {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes scrollWheel {
  0% { top: 6px; opacity: 1; }
  100% { top: 22px; opacity: 0; }
}

@keyframes ringRotate {
  to { transform: rotate(360deg); }
}

@keyframes pulseLive {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes revealUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseLogo {
  from { 
    transform: scale(0.88); 
    filter: drop-shadow(0 0 12px rgba(108,43,217,0.5)); 
  }
  to { 
    transform: scale(1.05); 
    filter: drop-shadow(0 0 28px rgba(14,165,233,0.7)); 
  }
}

@keyframes textBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

@keyframes loadFill {
  to { width: 100%; }
}

@keyframes spinRing {
  0% { transform: rotate(0); }
  100% { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* --------------------------------------------------------------------------
   26. ULTRA HIGH-QUALITY VIDEO SHOWCASE & PLAYER COMPONENTS
   -------------------------------------------------------------------------- */
.page-banner {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0A0A1A;
  padding: 80px 0;
}

.page-banner-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.4) saturate(1.25) contrast(1.1);
}

.page-banner-scrim {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(10,10,26,0.5) 0%, rgba(10,10,26,0.9) 100%),
              linear-gradient(to bottom, rgba(10,10,26,0.4) 0%, rgba(10,10,26,0.95) 100%);
  z-index: 1;
}

.page-banner .container {
  position: relative;
  z-index: 2;
  color: #FFF;
}

.page-banner h1 {
  color: #FFF;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 900;
  margin-top: 12px;
  margin-bottom: 16px;
  line-height: 1.15;
}

.page-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  max-width: 720px;
  line-height: 1.7;
}

/* Video Showcase Section */
.video-showcase-section {
  padding: 100px 0;
  background: var(--bg-dark);
  color: #FFF;
  position: relative;
  overflow: hidden;
}

.video-showcase-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 500px;
  background: radial-gradient(circle, rgba(108,43,217,0.2) 0%, rgba(14,165,233,0.05) 50%, transparent 80%);
  pointer-events: none;
}

.video-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.video-card-preview {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  transition: all 0.4s var(--ease);
  position: relative;
}

.video-card-preview:hover {
  transform: translateY(-8px);
  border-color: var(--accent-2);
  box-shadow: 0 24px 60px rgba(14,165,233,0.3);
}

.video-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

.video-card-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-badge-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(10,10,26,0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  color: #FFF;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}

.video-card-info {
  padding: 24px;
}

.video-card-info h3 {
  color: #FFF;
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.video-card-info p {
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* Interactive Channel Video Switcher */
.video-switcher-container {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 32px;
  margin-top: 40px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}

.video-switcher-tabs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 16px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.vtab-btn {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
  padding: 12px 24px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.vtab-btn.active, .vtab-btn:hover {
  background: var(--gradient);
  color: #FFF;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(108,43,217,0.4);
}

.video-player-main {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 580px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: #000;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.video-player-main video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

