�/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --clr-bg:        #060810;
  --clr-bg2:       #0c0f1a;
  --clr-surface:   #111525;
  --clr-surface2:  #151927;
  --clr-border:    rgba(255,255,255,0.07);
  --clr-red:       #ff3b30;
  --clr-red-glow:  rgba(255, 59, 48, 0.3);
  --clr-gold:      #f4a261;
  --clr-green:     #06d6a0;
  --clr-blue:      #4361ee;
  --clr-text:      #e8eaf0;
  --clr-muted:     #a5abb9;
  --clr-white:     #ffffff;
  --gradient-main: linear-gradient(135deg, #4361ee 0%, #4cc9f0 100%);
  --gradient-blue: linear-gradient(135deg, #4361ee 0%, #7048e8 100%);
  --gradient-dark: linear-gradient(180deg, #060810 0%, #0c0f1a 100%);
  --font-main:     'Outfit', sans-serif;
  --font-body:     'Inter', sans-serif;
  --radius:        16px;
  --radius-sm:     10px;
  --radius-lg:     24px;
  --shadow-glow:   0 0 40px rgba(67,97,238,0.15);
  --transition:    all 0.35s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; position: relative; }

body {
  background-color: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--clr-bg); }
::-webkit-scrollbar-thumb { background: var(--clr-red); border-radius: 3px; }

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4,h5 { font-family: var(--font-main); line-height: 1.2; }
a { 
  text-decoration: none; 
  color: inherit; 
  transition: color 0.25s ease;
}
/* Content area links (paragraphs only) get blue underlined style */
p a:not(.btn):not(.nav-link) {
  color: var(--clr-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}
p a:not(.btn):not(.nav-link):hover {
  color: var(--clr-red);
  text-decoration-color: var(--clr-red);
}
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
}

/* ===== SECTION ===== */
.section { padding: 100px 0; position: relative; overflow: hidden; }
.dark-section { background-color: var(--clr-bg2); }

.section-header { margin-bottom: 64px; }
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 59, 48, 0.12);
  border: 1px solid rgba(255, 59, 48, 0.3);
  color: var(--clr-red);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-title {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--clr-muted);
  max-width: 600px;
}
.section-title.center,
.section-subtitle.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-header.center,
.section-header { display: flex; flex-direction: column; }
.section-header { align-items: flex-start; }

/* ===== GRADIENT TEXT ===== */
.gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: var(--gradient-main);
  color: white;
  box-shadow: 0 4px 24px rgba(67,97,238,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(67,97,238,0.6);
}

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--clr-text);
  border: 1px solid var(--clr-border);
  backdrop-filter: blur(12px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--clr-red);
  border: 1px solid var(--clr-red);
}
.btn-outline:hover {
  background: var(--clr-red);
  color: white;
  transform: translateY(-2px);
}

.btn-large { padding: 18px 40px; font-size: 1.05rem; }

/* ===== HEADER ===== */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

#site-header.scrolled {
  background: rgba(6,8,16,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--clr-border);
  padding: 14px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  max-width: 1400px;
  width: 95%;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.site-logo-img {
  height: 44px;
  width: 44px;
  border-radius: 8px;
  object-fit: contain;
}
.logo-icon { font-size: 1.6rem; }
.logo-text {
  font-family: var(--font-main);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--clr-white);
}
.logo-accent { color: var(--clr-blue); }

.logo-custom-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
}
.logo-text-top {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #e39d56 0%, #fbe7b3 50%, #ecd38c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.logo-text-bottom {
  font-family: 'Comic Sans MS', 'Caveat', cursive, sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  background: linear-gradient(90deg, #e39d56 0%, #fbe7b3 50%, #ecd38c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-left: 2px;
}

.main-nav ul {
  display: flex;
  gap: 6px;
  list-style: none;
  background: rgba(255,255,255,0.03);
  padding: 6px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #cdd2de;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}
.nav-icon {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}
.nav-link:hover .nav-icon {
  transform: translateY(-2px);
}
.nav-link:hover,
.nav-link.active {
  color: var(--clr-white);
  background: rgba(67, 97, 238, 0.15);
  box-shadow: 0 4px 15px rgba(67, 97, 238, 0.2);
  text-decoration: none;
}
.nav-link::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-main);
  border-radius: 100px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}
.nav-link.active::after {
  opacity: 0.2;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  padding: 10px;
  border-radius: 10px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

@media (max-width: 992px) {
  .hamburger { display: flex; }
  
  .main-nav {
    position: fixed;
    top: 80px;
    left: 16px;
    right: 16px;
    background: rgba(12, 15, 26, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--clr-border);
    border-radius: 24px;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: var(--transition);
    z-index: 1000;
  }
  
  .main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .main-nav ul {
    flex-direction: column;
    background: none;
    border: none;
    padding: 0;
    gap: 10px;
  }
  
  .nav-link {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 1rem;
  }
}


/* ===== HERO ===== */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: flex-start;
  padding: 130px 0 40px;
  position: relative;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(67,97,238,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(67,97,238,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-particles .particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--clr-red);
  opacity: 0;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-100px) scale(1); }
}

.hero-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  max-width: 1400px;
  width: 95%;
  margin: 0 auto;
  align-items: center;
  position: relative;
  z-index: 1;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 59, 48, 0.1);
  border: 1px solid rgba(255, 59, 48, 0.3);
  color: var(--clr-red);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 12px;
  animation: fadeInDown 0.8s ease forwards;
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--clr-red);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--clr-red-glow);
  animation: pulse-red 2s ease-in-out infinite;
}
@keyframes pulse-red {
  0%, 100% { transform: scale(1); box-shadow: 0 0 8px var(--clr-red-glow); opacity: 1; }
  50% { transform: scale(1.2); box-shadow: 0 0 15px var(--clr-red-glow); opacity: 0.7; }
}

.hero-title {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
  animation: fadeInUp 0.8s 0.1s ease both;
}
/* Smaller hero titles for sub-pages */
.page-hero-container .hero-title {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  letter-spacing: -0.02em;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--clr-muted);
  margin-bottom: 20px;
  max-width: 480px;
  animation: fadeInUp 0.8s 0.2s ease both;
  line-height: 1.6;
}
.hero-subtitle strong { color: var(--clr-text); }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s 0.3s ease both;
}
.stat-item { text-align: center; }
.stat-number {
  display: block;
  font-family: var(--font-main);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--clr-white);
}
.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--clr-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--clr-border);
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s 0.4s ease both;
}

.trust-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--clr-muted);
  animation: fadeInUp 0.8s 0.5s ease both;
  flex-wrap: wrap;
}
.trust-sep { opacity: 0.4; }

/* ===== PHONE MOCKUP ===== */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  animation: fadeInRight 0.8s 0.3s ease both;
}

.phone-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(67,97,238,0.3) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: glowPulse 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes glowPulse {
  0%,100% { opacity: 0.6; transform: translate(-50%,-50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%,-50%) scale(1.1); }
}

.phone-wrapper {
  animation: phoneFloat 4s ease-in-out infinite;
}
@keyframes phoneFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

.phone-frame {
  width: 290px;
  height: 600px;
  background: linear-gradient(145deg, #1a1d2e, #0d1020);
  border-radius: 40px;
  padding: 12px;
  border: 1.5px solid rgba(255,255,255,0.12);
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.8),
    0 30px 60px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.1);
  position: relative;
}
.phone-frame::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 6px;
  background: #1a1d2e;
  border-radius: 3px;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #070a14;
  border-radius: 30px;
  overflow: hidden;
}

.app-screen {
  padding: 20px 12px 12px;
  height: 100%;
  overflow: hidden;
}
.app-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-main);
}
.app-search-icon { font-size: 1rem; }

.app-featured {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 14px;
}
.app-featured-img {
  height: 140px;
  background: linear-gradient(135deg, #1a0a2e 0%, #2d1b4e 40%, #0d1520 100%);
  position: relative;
}
.featured-overlay {
  position: absolute;
  inset: 0;
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
}
.featured-tag {
  background: var(--clr-red);
  color: white;
  font-size: 0.55rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 4px;
  width: fit-content;
}
.featured-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
}
.featured-meta {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
}
.featured-play {
  background: var(--clr-red);
  border: none;
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  cursor: pointer;
  width: fit-content;
}

.app-section-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.app-thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 14px;
}
.thumb {
  height: 60px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.thumb-badge {
  position: absolute;
  top: 4px;
  left: 4px;
  font-size: 0.42rem;
  font-weight: 700;
  background: rgba(0,0,0,0.7);
  color: var(--clr-gold);
  padding: 1px 4px;
  border-radius: 3px;
}
.t1 { background: url('../images/action.webp') center/cover no-repeat; }
.t2 { background: url('../images/anime.webp') center/cover no-repeat; }
.t3 { background: url('../images/scifi.webp') center/cover no-repeat; }
.t4 { background: url('../images/cricket.webp') center/cover no-repeat; }
.t5 { background: url('../images/action.webp') center/cover no-repeat; filter: hue-rotate(90deg); }
.t6 { background: url('../images/anime.webp') center/cover no-repeat; filter: hue-rotate(180deg); }
.t7 { background: url('../images/scifi.webp') center/cover no-repeat; filter: sepia(0.5); }
.t8 { background: url('../images/cricket.webp') center/cover no-repeat; filter: grayscale(0.5); }

.featured-bg-index { background: url('../images/action.webp') center/cover no-repeat; }
.featured-bg-pc { background: url('../images/scifi.webp') center/cover no-repeat; }
.featured-bg-tv { background: url('../images/cricket.webp') center/cover no-repeat; }


/* ===== FLOATING BADGES ===== */
.floating-badge {
  position: absolute;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--clr-text);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  animation: badgeFloat 3s ease-in-out infinite;
}
.badge-1 { top: 15%; left: -10px; animation-delay: 0s; }
.badge-2 { bottom: 25%; right: -20px; animation-delay: 0.7s; }
.badge-3 { top: 60%; left: -30px; animation-delay: 1.4s; }
@keyframes badgeFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ===== HERO SCROLL INDICATOR ===== */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--clr-muted);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeInUp 1s 1s ease both;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--clr-red));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ===== FOOTER ===== */
#site-footer {
  padding: 80px 0 40px;
  background: var(--clr-bg);
  border-top: 1px solid var(--clr-border);
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand .site-logo-img {
  height: 54px;
  width: 54px;
  transition: transform 0.3s ease;
}

.footer-brand .site-logo-img:hover {
  transform: scale(1.1);
}

.footer-brand .logo-text-top {
  font-size: 2.2rem;
}

.footer-brand .logo-text-bottom {
  font-size: 1.25rem;
}

/* ===== APP INFO ===== */
.app-info-section {
  padding: 48px 0;
  background: var(--clr-bg2);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}
.app-info-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.info-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  transition: var(--transition);
}
.info-card:hover {
  border-color: rgba(67,97,238,0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.info-icon { font-size: 1.8rem; margin-bottom: 10px; }
.info-label { font-size: 0.75rem; color: var(--clr-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.info-value { font-family: var(--font-main); font-size: 1.3rem; font-weight: 800; color: var(--clr-white); }

/* ===== TWO COL GRID ===== */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
}
.col-visual {
  display: flex;
  flex-direction: column;
}

.section-body {
  color: var(--clr-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}
.section-body strong { color: var(--clr-text); }

.check-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--clr-text);
}
.check-icon { font-size: 1rem; }

/* ===== GLOW CARD ===== */
.glow-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 3px;
  background-image: linear-gradient(var(--clr-surface), var(--clr-surface)), 
                    linear-gradient(135deg, var(--clr-blue) 0%, #7048e8 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(67,97,238,0.05);
}
.glow-card-inner {
  flex: 1;
  background: var(--clr-surface);
  border-radius: calc(var(--radius-lg) - 2px);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.streaming-icons {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 36px;
}
.stream-icon {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--clr-border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: var(--transition);
  animation: iconBounce 2s ease-in-out infinite;
}
.stream-icon:nth-child(2) { animation-delay: 0.2s; }
.stream-icon:nth-child(3) { animation-delay: 0.4s; }
.stream-icon:nth-child(4) { animation-delay: 0.6s; }
.stream-icon:nth-child(5) { animation-delay: 0.8s; }
.stream-icon:nth-child(6) { animation-delay: 1.0s; }
.stream-icon:hover {
  background: rgba(67,97,238,0.15);
  border-color: rgba(67,97,238,0.4);
  transform: translateY(-4px) scale(1.1);
}
@keyframes iconBounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.vs-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
}

@media (max-width: 600px) {
  .vs-compare {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.vs-col { }
.vs-label {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.vs-col ul { display: flex; flex-direction: column; gap: 12px; }
.vs-col ul li {
  font-size: 0.95rem;
  color: var(--clr-muted);
  padding: 10px 16px;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  min-height: 80px;
  display: flex;
  align-items: center;
}
.vs-bad .vs-label { color: #ff6b6b; }
.vs-good .vs-label { color: var(--clr-green); }
.vs-good ul li { color: var(--clr-text); }
.vs-divider {
  font-weight: 900;
  color: var(--clr-muted);
  text-align: center;
  width: 44px;
  height: 44px;
  background: var(--clr-bg2);
  border: 1px solid var(--clr-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .vs-divider {
    width: 36px;
    height: 36px;
    font-size: 0.75rem;
    margin: 4px auto;
  }
}

/* ===== CONTENT RICH ===== */
.content-rich {
  max-width: 800px;
  margin: 0 auto;
  color: var(--clr-muted);
  line-height: 1.9;
}
.content-rich p { margin-bottom: 20px; }

/* ===== STEPS GRID ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-main);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.step-card:hover::before { transform: scaleX(1); }
.step-card:hover {
  border-color: rgba(67,97,238,0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.step-num {
  font-family: var(--font-main);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(67,97,238,0.15);
  line-height: 1;
  margin-bottom: 12px;
}
.step-icon { font-size: 2rem; margin-bottom: 16px; }
.step-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--clr-white);
}
.step-card p { font-size: 0.88rem; color: var(--clr-muted); line-height: 1.7; }

/* ===== FEATURES GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-main);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.feature-card:hover::after { transform: scaleX(1); }
.feature-card:hover {
  border-color: rgba(67,97,238,0.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.feature-icon { font-size: 2rem; margin-bottom: 14px; }
.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--clr-white);
}
.feature-card p { font-size: 0.85rem; color: var(--clr-muted); line-height: 1.7; }
.feature-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gradient-main);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
}

.feature-logo-box {
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  gap: 12px;
}
.feature-logo-box:hover {
  border-color: rgba(67,97,238,0.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.feature-logo-box .site-logo-img {
  height: 64px;
  width: 64px;
}

.featured-feature {
  border-color: rgba(67,97,238,0.3);
  background: linear-gradient(135deg, var(--clr-surface2), rgba(67,97,238,0.05));
}

/* ===== BENEFITS ===== */
.benefit-highlight {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 900px;
  margin: 0 auto;
}
.benefit-icon-large { font-size: 4rem; flex-shrink: 0; }
.benefit-text p { color: var(--clr-muted); margin-bottom: 16px; line-height: 1.8; }
.benefit-text p:last-child { margin-bottom: 0; }
.highlight-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

/* ===== DOWNLOAD SECTION ===== */
.download-section {
  background: var(--clr-bg2);
  position: relative;
}
.download-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(67,97,238,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.download-wrapper {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.download-badge-large { font-size: 4rem; margin-bottom: 24px; }
.download-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.download-subtitle {
  font-size: 1.1rem;
  color: var(--clr-muted);
  margin-bottom: 48px;
}
.download-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 48px;
  text-align: left;
}
.download-steps .dl-step:first-child {
  grid-column: span 2;
  justify-content: center;
}
.dl-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 20px;
  transition: var(--transition);
}
.dl-step:hover {
  border-color: rgba(67,97,238,0.3);
  transform: translateY(-2px);
}
.dl-step-num {
  width: 32px;
  height: 32px;
  background: var(--gradient-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: white;
  flex-shrink: 0;
}
.dl-step p { font-size: 0.88rem; color: var(--clr-muted); line-height: 1.6; }
.dl-step p strong { color: var(--clr-text); }
.dl-step-body { flex: 1; display: flex; flex-direction: column; }
.dl-step-body p { font-size: 0.88rem; color: var(--clr-muted); line-height: 1.6; }
.dl-step-body p strong { color: var(--clr-text); }

/* ===== INSTALL STEP IMAGES ===== */
.install-step-img-wrapper {
  margin-top: 14px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  line-height: 0;
  background: var(--clr-surface2);
}
.install-step-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-sm);
  transition: transform 0.4s ease;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.install-step-img:hover { transform: scale(1.02); }
.vstep-content .install-step-img-wrapper {
  margin-top: 16px;
  max-width: 640px;
}
.vstep-content .install-step-img { aspect-ratio: 16/9; }
.download-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--clr-muted);
}

/* ===== DEVICES ===== */
.devices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.device-card {
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
}
.device-card:hover {
  border-color: rgba(67,97,238,0.4);
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(0,0,0,0.4), 0 0 30px rgba(67,97,238,0.08);
}
.device-icon { font-size: 3.5rem; margin-bottom: 20px; }
.device-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--clr-white);
}
.device-card p { color: var(--clr-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; }
.device-btn { width: fit-content; margin: 0 auto; }

/* ===== ALT GRID ===== */
.alt-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.alt-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}
.alt-card:hover {
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-4px);
}
.alt-icon { font-size: 2.5rem; margin-bottom: 14px; }
.alt-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--clr-white);
}
.alt-card p { font-size: 0.87rem; color: var(--clr-muted); line-height: 1.7; margin-bottom: 16px; }
.alt-rating { display: flex; gap: 4px; }
.star { color: rgba(255,255,255,0.15); font-size: 1rem; }
.star.filled { color: var(--clr-gold); }

/* ===== PROS & CONS ===== */
.proscons-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.pro-card, .con-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  display: flex;
  flex-direction: column;
}
.pc-header {
  padding: 20px 28px;
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pros-header { background: rgba(6,214,160,0.15); color: var(--clr-green); border-bottom: 1px solid rgba(6,214,160,0.2); }
.cons-header { background: rgba(67,97,238,0.15); color: var(--clr-red); border-bottom: 1px solid rgba(67,97,238,0.2); }
.pc-list {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--clr-surface);
  flex-grow: 1;
}
.pros-list-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 30px;
  row-gap: 12px;
}
.pc-list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--clr-muted);
  line-height: 1.4;
}
.pc-icon { flex-shrink: 0; }

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open { border-color: rgba(67,97,238,0.4); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  background: none;
  border: none;
  color: var(--clr-text);
  font-family: var(--font-main);
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: var(--transition);
}
.faq-question:hover { color: var(--clr-white); }
.faq-arrow { transition: transform 0.3s ease; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--clr-red); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 28px;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 28px 22px; }
.faq-answer p { color: var(--clr-muted); font-size: 0.9rem; line-height: 1.8; }

/* ===== CONCLUSION ===== */
.conclusion-wrapper {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.conclusion-text {
  color: var(--clr-muted);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 20px;
}
.conclusion-text strong { color: var(--clr-text); }
.conclusion-wrapper .btn { margin-top: 24px; }

/* ===== FOOTER ===== */
#site-footer {
  background: #03040a;
  border-top: 1px solid var(--clr-border);
  padding-top: 64px;
}
.footer-container {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--clr-border);
  align-items: start;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p {
  color: var(--clr-muted);
  font-size: 0.88rem;
  max-width: 300px;
  line-height: 1.7;
}
.footer-links-grid { display: flex; gap: 64px; }
.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-muted);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: var(--clr-muted);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--clr-white); }
.footer-bottom {
  padding: 24px 0;
  text-align: center;
  color: var(--clr-muted);
  font-size: 0.82rem;
}
.footer-bottom p + p { margin-top: 4px; opacity: 0.6; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* AOS fallback */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); }
[data-aos="zoom-in"] { transform: scale(0.9); }
[data-aos="zoom-in"].aos-animate { transform: scale(1); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 60px; text-align: center; }
  .hero-visual { order: -1; width: 100%; max-width: 400px; margin: 0 auto; display: flex; justify-content: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .trust-bar { justify-content: center; }
  .phone-frame { width: 260px; height: 540px; }
  .floating-badge { display: none; }
  .two-col-grid { grid-template-columns: 1fr; gap: 48px; }
  .app-info-grid { grid-template-columns: repeat(3, 1fr) !important; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  
  .tv-mockup-wrapper { left: 0 !important; transform: none; margin: 0 auto; width: 100%; }
  .tv-visual, .pc-visual { max-width: 100%; }
  .tv-screen { width: 100% !important; height: auto !important; aspect-ratio: 16/9; }
  .pc-mockup-wrapper { transform: none; margin: 0 auto; width: 100%; }
  .pc-screen { width: 100% !important; height: auto !important; aspect-ratio: 16/10; }
  .pc-base { width: 100% !important; max-width: 100%; }
  .firestick-remote { display: none; }
}

@media (max-width: 768px) {
  .hero { padding: 120px 0 60px; }
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-stats { gap: 12px; flex-wrap: wrap; justify-content: center; }
  .stat-divider { display: none; }
  .stat-item { flex: 1 1 30%; min-width: 80px; }
  .hero-cta { flex-direction: column; width: 100%; max-width: 300px; margin-left: auto; margin-right: auto; }
  .hero-cta .btn, .cta-group .btn, .download-wrapper .btn, .conclusion-wrapper .btn { width: 100%; justify-content: center; }
  
  .app-info-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px; }
  .steps-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .devices-grid { grid-template-columns: 1fr; }
  .alt-grid { grid-template-columns: 1fr; }
  .proscons-grid { grid-template-columns: 1fr; }
  .pros-list-cols { grid-template-columns: 1fr; }
  .download-steps { grid-template-columns: 1fr; }
  .download-steps .dl-step:first-child { grid-column: span 1; }
  .benefit-highlight { flex-direction: column; padding: 32px; gap: 24px; text-align: center; }
  .benefit-icon-large { margin: 0 auto; }
  .footer-container { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .footer-brand p { margin-left: auto; margin-right: auto; }
  .footer-links-grid { flex-direction: column; gap: 40px; align-items: center; }
  .footer-col { text-align: center; }
  
  .trust-grid { grid-template-columns: 1fr; }
  
  .tv-visual, .pc-visual { width: 100%; max-width: 100%; }
  .tv-mockup-wrapper { left: 0 !important; transform: none; margin-bottom: 0; width: 100%; }
  .tv-screen { width: 100% !important; height: auto !important; aspect-ratio: 16/9; padding: 8px; }
  .tv-stand { width: 60% !important; max-width: 120px; margin: 0 auto; }
  .pc-mockup-wrapper { transform: none; margin-bottom: 0; width: 100%; }
  .pc-screen { width: 100% !important; max-width: 100%; height: auto !important; aspect-ratio: 16/10; padding: 8px; }
  .pc-base { width: 100% !important; max-width: 100%; }
}

@media (max-width: 480px) {
  .section { padding: 50px 0; }
  .hero-title { font-size: 1.8rem; }
  .phone-frame { width: 220px; height: 460px; }
  .section-badge { font-size: 0.7rem; padding: 4px 12px; }
  .app-info-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px; }
  .info-card { padding: 16px 12px; }
  .info-value { font-size: 1.1rem; }
  
  .tv-mockup-wrapper { left: 0 !important; transform: none; margin-bottom: 0; }
  .pc-mockup-wrapper { transform: none; margin-bottom: 0; }
}

/* ===== TRUST GRID ===== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1200px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .trust-grid { grid-template-columns: 1fr; }
}
.trust-card {
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: var(--transition);
}
.trust-card:hover {
  border-color: rgba(67,97,238,0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.trust-icon { font-size: 2.2rem; margin-bottom: 14px; }
.trust-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--clr-white); }
.trust-card p { font-size: 0.87rem; color: var(--clr-muted); line-height: 1.7; }

/* ===== INFO TABLE ===== */
.info-table-wrapper {
  max-width: 100%;
  margin: 0;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.info-table thead tr {
  background: linear-gradient(90deg, rgba(67,97,238,0.2), rgba(239,35,60,0.1));
  border-bottom: 2px solid var(--clr-border);
}
.info-table th {
  padding: 18px 24px;
  text-align: left;
  font-weight: 800;
  color: var(--clr-white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.info-table tr {
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s ease;
}
.info-table tr:last-child { border-bottom: none; }
.info-table tr:hover { 
  background: rgba(67,97,238,0.05); 
  border-left: 3px solid var(--clr-red);
}
.td-label {
  padding: 14px 24px;
  color: var(--clr-muted);
  font-weight: 600;
  font-size: 0.88rem;
  width: 35%;
  background: rgba(255,255,255,0.02);
}
.td-value {
  padding: 14px 24px;
  color: var(--clr-text);
  font-size: 0.9rem;
}
.td-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(67,97,238,0.12);
  border: 1px solid rgba(67,97,238,0.25);
  color: var(--clr-red);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
}
.td-badge-green {
  background: rgba(6,214,160,0.1);
  border-color: rgba(6,214,160,0.25);
  color: var(--clr-green);
}

.sysreq-note {
  text-align: center;
  margin-top: 24px;
  color: var(--clr-muted);
  font-size: 0.92rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.sysreq-note strong { color: var(--clr-text); }

/* ===== COMPARE TABLE ===== */
.compare-table-wrapper {
  border-radius: var(--radius);
  overflow-x: auto;
  border: 1px solid var(--clr-border);
  -webkit-overflow-scrolling: touch;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.compare-table th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--clr-surface);
  color: var(--clr-muted);
}
.compare-table th.col-castle {
  background: rgba(67,97,238,0.15);
  color: var(--clr-red);
}
.compare-table tr {
  border-bottom: 1px solid var(--clr-border);
  transition: background 0.2s;
}
.compare-table tr:last-child { border-bottom: none; }
.compare-table tr:hover { background: rgba(255,255,255,0.02); }
.compare-table td {
  padding: 14px 20px;
  color: var(--clr-muted);
  vertical-align: middle;
}
.compare-table td:first-child {
  font-weight: 600;
  color: var(--clr-text);
  font-size: 0.88rem;
  width: 25%;
}
.col-castle {
  background: rgba(67,97,238,0.04);
  border-left: 2px solid rgba(67,97,238,0.2);
  border-right: 2px solid rgba(67,97,238,0.2);
}
.col-castle.win {
  color: var(--clr-text);
  font-weight: 600;
}
.compare-verdict {
  background: var(--clr-surface);
  border-top: 2px solid rgba(67,97,238,0.3);
  padding: 28px 32px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.verdict-icon { font-size: 1.8rem; flex-shrink: 0; }
.compare-verdict p { color: var(--clr-muted); font-size: 0.92rem; line-height: 1.8; }
.compare-verdict strong { color: var(--clr-text); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  min-height: 85vh;
  display: flex;
  align-items: flex-start;
  padding: 130px 0 40px;
}
.page-hero-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  max-width: 1400px;
  width: 95%;
  margin: 0 auto;
  align-items: center;
  position: relative;
  z-index: 1;
}
.page-hero-text { }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--clr-muted);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--clr-red); }
.breadcrumb a:hover { text-decoration: underline; }
.bread-sep { opacity: 0.4; }

/* ===== PC MOCKUP ===== */
.pc-visual { position: relative; display: flex; justify-content: center; }
.pc-mockup-wrapper { animation: phoneFloat 4s ease-in-out infinite; }
.pc-mockup {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pc-screen {
  width: 480px;
  height: 310px;
  background: linear-gradient(145deg, #1a1d2e, #0d1020);
  border-radius: 12px 12px 0 0;
  border: 4px solid #1a1d2e;
  padding: 10px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  overflow: hidden;
  position: relative;
}
.pc-screen::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  z-index: 10;
}
.emulator-ui { height: 100%; display: flex; flex-direction: column; }
.emu-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  background: rgba(0,0,0,0.3);
  border-radius: 6px;
  margin-bottom: 6px;
  flex-shrink: 0;
}
.emu-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.emu-dot.red    { background: #ff5f57; }
.emu-dot.yellow { background: #febc2e; }
.emu-dot.green  { background: #28c840; }
.emu-title {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.4);
  margin-left: 4px;
  font-family: var(--font-body);
}
.emu-body { flex: 1; overflow: hidden; border-radius: 6px; }
.pc-base {
  width: 540px;
  height: 12px;
  background: linear-gradient(180deg, #1a1d2e, #0d1020);
  border-radius: 2px 2px 12px 12px;
  border: 2px solid rgba(255,255,255,0.08);
  border-top: none;
  position: relative;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}
.pc-base::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 4px;
  background: rgba(0,0,0,0.3);
  border-radius: 0 0 10px 10px;
}
.pc-stand {
  display: none;
}

/* ===== VERTICAL STEPS ===== */
.two-col-guide {
  display: grid;
  grid-template-columns: 1.2fr 1.3fr;
  gap: 70px;
  align-items: start;
  margin-top: 48px;
}
.guide-subtitle {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--clr-white);
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}
.guide-subtitle::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gradient-main);
  border-radius: 10px;
}
.vertical-steps { display: flex; flex-direction: column; gap: 0; }
.vstep {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 24px;
  position: relative;
  transition: all 0.3s ease;
}
.vstep:hover .vstep-num {
  box-shadow: 0 0 15px rgba(67,97,238,0.5);
  transform: scale(1.1);
}
.vstep::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 32px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, rgba(67,97,238,0.4), transparent);
}
.vstep:last-child::before { display: none; }
.vstep-num {
  width: 32px;
  height: 32px;
  background: var(--gradient-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.82rem;
  color: white;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.vstep-content strong {
  display: block;
  color: var(--clr-white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.vstep-content p {
  font-size: 0.85rem;
  color: var(--clr-muted);
  line-height: 1.6;
}
.vstep-content strong b, .vstep-content p strong { color: var(--clr-text); }
.td-green { 
  color: var(--clr-green) !important; 
  font-weight: 700; 
  text-shadow: 0 0 10px rgba(6,214,160,0.2);
}

/* ===== INFO NOTE ===== */
.info-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: rgba(244,162,97,0.08);
  border: 1px solid rgba(244,162,97,0.25);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.87rem;
  color: var(--clr-muted);
  line-height: 1.6;
}
.info-note strong { color: var(--clr-gold); }
.note-icon { font-size: 1rem; flex-shrink: 0; }

/* ===== INFO NOTE CARD ===== */
.info-note-card {
  background: var(--clr-surface);
  border: 1px solid rgba(67,97,238,0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}
.note-header {
  background: rgba(67,97,238,0.08);
  border-bottom: 1px solid rgba(67,97,238,0.15);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.note-big-icon { font-size: 2.5rem; }
.note-header h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--clr-white);
}
.note-body {
  padding: 28px 36px;
}
.note-body p {
  color: var(--clr-muted);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 14px;
}
.note-body p:last-child { margin-bottom: 0; }
.note-body strong { color: var(--clr-text); }

/* ===== CTA GROUP ===== */
.cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ===== APP SCREENSHOTS GALLERY ===== */
.gallery-section {
  padding: 80px 0;
  background: var(--clr-bg);
  overflow: hidden;
  position: relative;
}
.gallery-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-border), transparent);
}
.gallery-container {
  margin-top: 40px;
  position: relative;
}
.gallery-container::before,
.gallery-container::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.gallery-container::before {
  left: 0;
  background: linear-gradient(to right, var(--clr-bg) 10%, transparent);
}
.gallery-container::after {
  right: 0;
  background: linear-gradient(to left, var(--clr-bg) 10%, transparent);
}
.gallery-track-wrapper {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: auto;
}
.gallery-track-wrapper::-webkit-scrollbar {
  display: none;
}
.screenshots-track {
  display: flex;
  gap: 24px;
  width: max-content;
  padding: 20px 24px 40px 0;
}

/* Gallery Arrows */
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--clr-surface);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--clr-text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}
.gallery-arrow:hover {
  background: var(--clr-red);
  color: white;
  box-shadow: 0 4px 20px rgba(67,97,238,0.4);
  border-color: transparent;
  transform: translateY(-50%) scale(1.1);
}
.left-arrow { left: 16px; }
.right-arrow { right: 16px; }

@media (max-width: 768px) {
  .gallery-arrow { width: 40px; height: 40px; }
  .left-arrow { left: 8px; }
  .right-arrow { right: 8px; }
  .gallery-container::before, .gallery-container::after { width: 40px; }
}
.screenshot-card {
  flex: 0 0 260px;
  scroll-snap-align: center;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}
.screenshot-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(67,97,238,0.5) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}
.screenshot-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 40px rgba(67,97,238,0.25);
  border-color: rgba(67,97,238,0.4);
  z-index: 10;
}
.screenshot-card:hover::after {
  opacity: 1;
}
.screenshot-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
  border-radius: 24px;
}
.screenshot-card:hover .screenshot-img {
  transform: scale(1.06);
}
@media (max-width: 768px) {
  .screenshot-card { flex: 0 0 220px; }
}

/* ===== TV MOCKUP ===== */
.tv-visual { position: relative; display: flex; justify-content: center; }
.tv-mockup-wrapper { animation: phoneFloat 4s ease-in-out infinite; position: relative; left: -180px; }
.tv-mockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.tv-screen {
  width: 520px;
  height: 300px;
  background: linear-gradient(145deg, #111425, #080a15);
  border-radius: 8px;
  border: 4px solid #1a1d2e;
  padding: 15px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.7), 0 0 40px rgba(67,97,238,0.1);
  overflow: hidden;
  position: relative;
}
.tv-bezel {
  position: absolute;
  inset: -4px;
  border: 4px solid #252a3d;
  border-radius: 10px;
  pointer-events: none;
}
.tv-stand {
  width: 120px;
  height: 12px;
  background: linear-gradient(180deg, #1a1d2e, #0c0f1a);
  border-radius: 0 0 20px 20px;
  margin-top: -2px;
  border: 1px solid rgba(255,255,255,0.05);
}

/* TV App UI inside screen */
.tv-app-ui { height: 100%; display: flex; flex-direction: column; font-family: var(--font-body); }
.tv-nav { display: flex; gap: 15px; margin-bottom: 15px; opacity: 0.6; font-size: 0.65rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.tv-nav-item.active { color: var(--clr-red); border-bottom: 2px solid var(--clr-red); padding-bottom: 2px; }
.tv-hero-slide {
  flex: 1;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(67,97,238,0.3)), url('../images/cricket.webp') center/cover;
  border-radius: 6px;
  padding: 20px;
  display: flex;
  align-items: flex-end;
  margin-bottom: 15px;
  border: 1px solid rgba(255,255,255,0.05);
}
.slide-badge { background: var(--clr-red); font-size: 0.5rem; padding: 2px 6px; border-radius: 4px; margin-bottom: 5px; width: fit-content; font-weight: 700; }
.slide-title { font-size: 1.2rem; font-weight: 800; line-height: 1.1; margin-bottom: 5px; }
.slide-meta { font-size: 0.6rem; opacity: 0.7; }
.tv-row-label { font-size: 0.7rem; font-weight: 700; margin-bottom: 10px; opacity: 0.8; }
.tv-posters { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.poster { height: 80px; background: rgba(255,255,255,0.05); border-radius: 4px; border: 1px solid rgba(255,255,255,0.05); }
.poster.p1 { background: url('../images/action.webp') center/cover; }
.poster.p2 { background: url('../images/anime.webp') center/cover; }
.poster.p3 { background: url('../images/scifi.webp') center/cover; }
.poster.p4 { background: url('../images/cricket.webp') center/cover; }

/* Firestick Remote */
.firestick-remote {
  position: absolute;
  right: -60px;
  bottom: -20px;
  width: 50px;
  height: 160px;
  background: #111425;
  border-radius: 25px;
  border: 1.5px solid #252a3d;
  box-shadow: 10px 10px 30px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  z-index: 5;
  animation: bounce 3s ease-in-out infinite;
}
.remote-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid #252a3d;
  background: #0c0f1a;
  margin-bottom: 15px;
  position: relative;
}
.remote-circle::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #252a3d;
}
.remote-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.rb { width: 14px; height: 8px; background: #252a3d; border-radius: 4px; }

/* =====================================================
   COMPREHENSIVE MOBILE RESPONSIVENESS FIX
   Covers all screen sizes from 320px → 768px
   Does NOT alter any desktop (> 768px) layout
   ===================================================== */

/* ── Global overflow prevention ── */
html, body { overflow-x: hidden !important; max-width: 100%; }

section, header, footer,
.hero, .hero-container, .page-hero-container,
.nav-container, .two-col-grid, .glow-card, .glow-card-inner,
.app-info-grid, .features-grid, .trust-grid, .steps-grid,
.download-wrapper, .footer-container, .benefit-highlight,
.proscons-grid, .faq-list, .compare-table-wrapper,
.info-table-wrapper, .gallery-section {
  max-width: 100%;
}

/* Ensure no clipping on desktop/tablet for mockups and badges */
.hero, .hero-container, .page-hero-container, .hero-visual, .tv-visual, .pc-visual {
  overflow: visible !important;
}

/* hero-visual: only limit max-width on desktop, overflow clipping is mobile-only */
.hero-visual { max-width: 100%; }

/* ── BUTTON OVERFLOW FIX — all screen sizes ── */
@media (max-width: 992px) {
  /* Force every hero CTA to a constrained column */
  .hero-cta {
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
    max-width: 360px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
    gap: 12px !important;
  }

  /* Every button inside a hero CTA: strictly 100% of its container */
  .hero-cta .btn {
    display: flex !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    justify-content: center !important;
    text-align: center !important;
    white-space: normal !important;
  }

  /* Download-section and conclusion big buttons */
  .download-wrapper .btn,
  .conclusion-wrapper .btn {
    display: flex !important;
    width: 100% !important;
    max-width: 360px !important;
    box-sizing: border-box !important;
    justify-content: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media (max-width: 480px) {
  .hero-cta { max-width: 320px !important; }
  .download-wrapper .btn,
  .conclusion-wrapper .btn { max-width: 320px !important; }
}

@media (max-width: 360px) {
  .hero-cta { max-width: 100% !important; padding: 0 4px; }
  .download-wrapper .btn,
  .conclusion-wrapper .btn { max-width: 100% !important; font-size: 0.82rem; }
}

/* ── 1024px: page-hero-container for sub-pages (was missing!) ── */
@media (max-width: 1024px) {
  .page-hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .page-hero-container .hero-visual,
  .page-hero-container .tv-visual,
  .page-hero-container .pc-visual {
    order: -1;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }
  .page-hero-container .hero-cta  { justify-content: center; }
  .page-hero-container .hero-stats { justify-content: center; }
  .page-hero-container .trust-bar  { justify-content: center; }
  .page-hero-container .hero-subtitle { margin-left: auto; margin-right: auto; }
  .page-hero-container .badge-pill { display: inline-flex; }
}

/* ── 768px: Tablet / Large Mobile ── */
@media (max-width: 768px) {
  /* Section spacing */
  .section { padding: 72px 0; }

  /* Navigation logo — scale down */
  .logo-text-top   { font-size: 1.5rem; }
  .logo-text-bottom { font-size: 0.95rem; }

  /* Two-col grid gap */
  .two-col-grid { gap: 36px; }

  /* Glow card */
  .glow-card-inner { padding: 24px; }

  /* Streaming icons — wrap on mobile */
  .streaming-icons { flex-wrap: wrap; gap: 10px; justify-content: center; }
  .stream-icon { width: 48px; height: 48px; font-size: 1.4rem; }

  /* VS compare — remove fixed height on list items */
  .vs-col ul li { min-height: auto; padding: 8px 12px; }

  /* Info / app-details table */
  .info-table { font-size: 0.84rem; }
  .td-label, .td-value { padding: 12px 16px; }
  .info-table th { padding: 14px 16px; font-size: 0.78rem; }

  /* Compare table */
  .compare-table { font-size: 0.84rem; }
  .compare-table td, .compare-table th { padding: 12px 14px; }

  /* FAQ */
  .faq-question { padding: 18px 20px; font-size: 0.92rem; }
  .faq-answer              { padding: 0 20px; }
  .faq-item.open .faq-answer { padding: 0 20px 18px; }

  /* Pros & Cons */
  .pc-list   { padding: 20px; }
  .pc-header { padding: 16px 20px; }

  /* Compare verdict */
  .compare-verdict { padding: 20px 24px; gap: 12px; }

  /* Footer links gap */
  .footer-links-grid { gap: 32px; }

  /* Conclusion / hero-inline buttons — auto-width allowed */
  .device-btn { width: auto; }

  /* Mini-TV in firestick.html intro section */
  .mini-tv .tv-screen { width: 100% !important; max-width: 320px; height: auto !important; aspect-ratio: 16/9; }

  /* Badge-row in glow card */
  .badge-row { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
}

/* ── 480px: Small Mobile ── */
@media (max-width: 480px) {
  /* Sections */
  .section { padding: 52px 0; }

  /* Hero */
  .hero { padding: 100px 0 40px; min-height: auto; }
  .hero-visual, .tv-visual, .pc-visual { overflow: hidden !important; }
  .phone-frame { width: 200px !important; height: 420px !important; }

  /* Nav logo */
  .logo-text-top    { font-size: 1.25rem; }
  .logo-text-bottom { font-size: 0.8rem; }
  .nav-container    { gap: 12px; }
  .site-logo-img    { height: 36px !important; width: 36px !important; }

  /* App info grid */
  .app-info-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 8px; }
  .info-card  { padding: 14px 10px; }
  .info-icon  { font-size: 1.4rem; margin-bottom: 6px; }
  .info-value { font-size: 1rem; }
  .info-label { font-size: 0.65rem; }

  /* Two-col */
  .two-col-grid { gap: 24px; }

  /* Glow card */
  .glow-card-inner { padding: 16px; }

  /* Streaming icons */
  .streaming-icons { gap: 6px; }
  .stream-icon { width: 40px; height: 40px; font-size: 1.1rem; border-radius: 10px; }

  /* Feature cards */
  .feature-card { padding: 20px; }
  .feature-badge { font-size: 0.6rem; padding: 3px 8px; }

  /* Step cards */
  .step-card { padding: 24px 16px; }
  .step-num  { font-size: 2.4rem; }

  /* Trust cards */
  .trust-card { padding: 24px 16px; }

  /* Download */
  .download-subtitle { font-size: 0.96rem; margin-bottom: 32px; }
  .dl-step { padding: 16px; gap: 12px; }

  /* Benefit highlight */
  .benefit-highlight { padding: 24px 16px; }
  .benefit-icon-large { font-size: 3rem; }

  /* Pros/cons */
  .pc-list   { padding: 16px; gap: 10px; }
  .pc-header { padding: 14px 16px; font-size: 0.92rem; }

  /* FAQ */
  .faq-question { padding: 16px; font-size: 0.88rem; }
  .faq-answer               { padding: 0 16px; }
  .faq-item.open .faq-answer { padding: 0 16px 16px; }

  /* Compare verdict */
  .compare-verdict { flex-direction: column; padding: 16px; }
  .verdict-icon { font-size: 1.4rem; }

  /* Info/app-details table */
  .info-table { font-size: 0.78rem; }
  .td-label, .td-value { padding: 10px 12px; }
  .td-label { width: auto; min-width: 90px; }
  .info-table th { padding: 12px; font-size: 0.72rem; }

  /* Compare table */
  .compare-table { font-size: 0.76rem; }
  .compare-table td, .compare-table th { padding: 10px 10px; }
  .compare-table td:first-child { min-width: 80px; }

  /* VS compare */
  .vs-label { font-size: 0.92rem; }
  .vs-col ul li { font-size: 0.84rem; padding: 8px 10px; }

  /* Footer */
  .footer-links-grid { gap: 24px; }

  /* Note cards (mod/pc pages) */
  .note-header { padding: 18px 16px; gap: 12px; }
  .note-big-icon { font-size: 2rem; }
  .note-header h2 { font-size: 1.1rem; }
  .note-body { padding: 18px 16px; }

  /* Vertical steps */
  .vstep-content strong { font-size: 0.88rem; }

  /* Conclusion button */
  .conclusion-wrapper .btn {
    display: flex !important;
    max-width: 300px;
    margin: 24px auto 0;
    font-size: 0.88rem;
    padding: 14px 20px;
  }

  /* Two-col guide (for-pc / firestick detail pages) */
  .two-col-guide {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 32px;
  }
}

/* ── 360px: Ultra-small phones ── */
@media (max-width: 360px) {
  .container { padding: 0 12px; }

  .hero-title   { font-size: 1.6rem !important; }
  .section-title { font-size: 1.5rem; }

  .logo-text-top    { font-size: 1.1rem; }
  .logo-text-bottom { font-size: 0.72rem; }
  .site-logo-img    { height: 32px !important; width: 32px !important; }

  .btn       { font-size: 0.84rem; padding: 12px 18px; }
  .btn-large { font-size: 0.88rem; padding: 14px 22px; }

  .app-info-grid   { gap: 6px !important; }
  .info-card       { padding: 10px 8px; }
  .info-value      { font-size: 0.9rem; }

  .hero-cta { max-width: 260px; }

  .faq-question  { font-size: 0.82rem; padding: 14px; }
  .compare-table { font-size: 0.7rem; }
  .compare-table td, .compare-table th { padding: 8px 8px; }

  .feature-card { padding: 16px; }
  .step-card    { padding: 20px 14px; }
  .trust-card   { padding: 20px 14px; }

  .section-badge { font-size: 0.65rem; padding: 4px 10px; }
  .section-subtitle { font-size: 0.92rem; }
}

/* ── Ensure gallery horizontal scroll is preserved ── */
.gallery-track-wrapper { max-width: 100vw; }
.screenshots-track { padding-left: 16px; }

@media (max-width: 480px) {
  .screenshot-card { flex: 0 0 200px; }
  .gallery-arrow   { width: 36px; height: 36px; }
  .left-arrow      { left: 4px; }
  .right-arrow     { right: 4px; }
}

