.live-tv-container {
  padding: 20px;
  max-width: 1400px;
  margin: 0 auto;
  color: #fff;
}

.live-tv-container h1 {
  background: linear-gradient(90deg, #00d4ff, #7b2cbf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 5px;
}

.subtitle {
  color: #aaa;
  margin-bottom: 20px;
}

.player-wrapper {
  margin-bottom: 30px;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 9;
}

.main-player {
  width: 100%;
  height: 100%;
  background: #000;
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}

.channel-card {
  background: #1f1f1f;
  border-radius: 10px;
  padding: 12px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  border: 2px solid transparent;
}

.channel-card:hover {
  background: #2a2a2a;
  transform: scale(1.03);
}

.channel-card.active {
  background: #3b82f6;
  border-color: #60a5fa;
}

.channel-logo {
  width: 100%;
  height: 80px;
  object-fit: contain;
  margin-bottom: 8px;
  background: #000;
  border-radius: 6px;
}

.channel-name {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.3;
  color: #fff;
}

.error-banner {
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid #ef4444;
  color: #fca5a5;
  padding: 12px 20px;
  border-radius: 8px;
  text-align: center;
  margin-top: 20px;
}*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #12121a;
  --bg-card: #1a1a25;
  --accent: #6366f1;
  --accent-light: #818cf8;
  --accent-glow: rgba(99, 102, 241, 0.4);
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border: rgba(255, 255, 255, 0.1);
  --success: #22c55e;
  --warning: #f59e0b;
  --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
  --gradient-hero: linear-gradient(180deg, #0a0a0f 0%, #1e1b4b 50%, #0a0a0f 100%);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

#root {
  min-height: 100vh;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 4px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

/* Utility Classes */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.glow-effect {
  box-shadow: 0 0 40px var(--accent-glow);
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px var(--accent-glow); }
  50% { box-shadow: 0 0 60px var(--accent-glow); }
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-pulse-glow {
  animation: pulse-glow 3s ease-in-out infinite;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  background-size: 200% 200%;
  animation: gradient-shift 4s ease infinite;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px var(--accent-glow);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--accent);
  background: rgba(99, 102, 241, 0.1);
}

/* Card Styles */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
/* ================================
   MOBILE RESPONSIVE STYLES
   ================================ */

/* Base mobile adjustments */
@media (max-width: 768px) {
  /* Reduce padding on all containers */
  .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  /* Section padding - reduce on mobile */
  section {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  /* Hero adjustments */
  h1 {
    font-size: clamp(1.8rem, 9vw, 3rem) !important;
    line-height: 1.1 !important;
  }

  h2 {
    font-size: clamp(1.5rem, 6vw, 2.5rem) !important;
  }

  /* Buttons - full width on mobile */
  .btn {
    padding: 0.875rem 1.5rem !important;
    font-size: 0.95rem !important;
    width: 100% !important;
    max-width: 280px !important;
  }

  /* Hero buttons - stack vertically on mobile */
  .hero-buttons {
    flex-direction: column !important;
    align-items: center !important;
    gap: 1rem !important;
  }

  .hero-buttons .btn {
    width: 100% !important;
    max-width: 280px !important;
  }

  /* Pricing cards - stack vertically */
  .pricing-grid {
    grid-template-columns: 1fr !important;
    padding: 0 !important;
    gap: 1rem !important;
  }

  .pricing-card {
    padding: 1.5rem !important;
  }

  /* Features grid - single column */
  .features-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  /* Stats bar - 2 columns */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem !important;
  }

  /* Services grid - single column */
  .services-grid {
    grid-template-columns: 1fr !important;
  }

  /* Process steps - vertical */
  .process-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  /* Footer - single column */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  /* Form inputs - full width, prevent iOS zoom */
  input, textarea, select {
    font-size: 16px !important;
    width: 100% !important;
  }

  /* Navbar - hide desktop nav */
  .desktop-nav {
    display: none !important;
  }

  .mobile-menu-btn {
    display: block !important;
  }

  /* Order form overlay - full screen */
  .order-form-overlay {
    padding: 1rem !important;
  }

  /* Channel ticker - slower scroll */
  .channel-ticker-inner {
    animation-duration: 30s !important;
  }

  /* IT Services section text */
  .section-text {
    font-size: 1rem !important;
  }
}

/* Small phones */
@media (max-width: 480px) {
  h1 {
    font-size: 1.75rem !important;
  }

  h2 {
    font-size: 1.5rem !important;
  }

  h3 {
    font-size: 1.25rem !important;
  }

  .container {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }

  .pricing-card {
    padding: 1rem !important;
  }

  .btn {
    padding: 0.75rem 1rem !important;
    font-size: 0.875rem !important;
  }

  /* Form two-column grids become single column */
  .form-two-col {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  /* Stats numbers smaller */
  .stat-number {
    font-size: 2rem !important;
  }
}

/* iOS notch safe areas */
@supports (padding: max(0px)) {
  .container {
    padding-left: max(1rem, env(safe-area-inset-left)) !important;
    padding-right: max(1rem, env(safe-area-inset-right)) !important;
  }
}

/* Touch devices - pause animations */
@media (hover: none) and (pointer: coarse) {
  .channel-ticker-inner {
    animation-play-state: paused !important;
  }
}

/* Landscape mode on phone */
@media (max-height: 500px) and (orientation: landscape) {
  section {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
}
