/* CSS Stylesheet for HiTV Premium Landing Page */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --bg-primary: #0B0B0F;
  --bg-secondary: #15151D;
  --bg-card: #1D1D28;
  --accent-primary: #FF4D4F;
  --accent-secondary: #FF7A59;
  --accent-gradient: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  --accent-glow: 0 0 20px rgba(255, 77, 79, 0.4);
  --text-primary: #FFFFFF;
  --text-secondary: #A0A0B0;
  --text-muted: #62627A;
  
  --border-radius-lg: 24px;
  --border-radius-md: 16px;
  --border-radius-sm: 8px;
  
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.2s ease-in-out;
  
  --mouse-x: 50%;
  --mouse-y: 50%;
  --max-width: 1200px;
}

.ambient-bg, .glow-blob, #particle-canvas, #mouse-glow {
  display: none !important;
}

.reveal {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
  transition: none !important;
}

/* Hardware-accelerated scroll reveals for subpages */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Base resets & styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button, .btn {
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  transition: var(--transition-smooth);
}

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

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

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

::-webkit-scrollbar-thumb {
  background: var(--bg-card);
  border-radius: 4px;
  border: 2px solid var(--bg-primary);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-primary);
}

/* Background Effects */
.ambient-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.glow-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  mix-blend-mode: screen;
  animation: float 20s infinite alternate ease-in-out;
}

.blob-1 {
  width: 45vw;
  height: 45vw;
  background: var(--accent-primary);
  top: -10%;
  right: -5%;
  animation-duration: 25s;
}

.blob-2 {
  width: 35vw;
  height: 35vw;
  background: var(--accent-secondary);
  bottom: 10%;
  left: -5%;
  animation-duration: 18s;
}

.blob-3 {
  width: 25vw;
  height: 25vw;
  background: #722ed1;
  top: 40%;
  right: 20%;
  animation-duration: 30s;
}

#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  opacity: 0.4;
}

/* Mouse Glow Spotlight */
.mouse-glow-tracker {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 999;
  background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y), rgba(255, 77, 79, 0.03), transparent 80%);
}

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(5%, 8%) scale(1.1); }
  100% { transform: translate(-2%, -5%) scale(0.95); }
}

/* Container */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* Grid & Layout Utilities */
.section-padding {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--border-radius-md);
  font-weight: 600;
  font-size: 1rem;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background: var(--accent-gradient);
  color: var(--text-primary);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-secondary) 0%, var(--accent-primary) 100%);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}

.btn-primary:hover::before {
  opacity: 1;
}

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

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Button ripple effect */
.btn-ripple {
  position: relative;
  overflow: hidden;
}

.btn-ripple .ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  background-color: rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Sticky Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  padding: 24px 0;
}

.navbar.scrolled {
  padding: 14px 0;
  background: rgba(11, 11, 15, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--text-primary);
  gap: 8px;
}

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

.logo-img {
  width: 32px;
  height: 32px;
  border-radius: var(--border-radius-sm);
  object-fit: cover;
  box-shadow: 0 0 10px rgba(255, 77, 79, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-link {
  font-weight: 500;
  color: var(--text-secondary);
  font-size: 0.95rem;
  padding: 8px 0;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1010;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-primary);
  transition: var(--transition-smooth);
}

/* Mobile Nav Active states */
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  overflow: hidden;
}

.hero-content {
  z-index: 2;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 77, 79, 0.08);
  border: 1px solid rgba(255, 77, 79, 0.2);
  color: var(--accent-primary);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-title {
  font-size: 3.8rem;
  line-height: 1.15;
  margin-bottom: 24px;
}

/* Typing text animation container */
.typing-wrapper {
  color: var(--accent-primary);
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
  min-width: 200px;
}

.typing-cursor {
  display: inline-block;
  width: 3px;
  background: var(--accent-primary);
  margin-left: 4px;
  animation: cursor-blink 0.8s infinite;
}

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

.hero-desc {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: center;
}

.rating-item {
  display: flex;
  flex-direction: column;
}

.stars {
  color: #FFC53D;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.rating-num {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
  font-family: 'Outfit', sans-serif;
}

.rating-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Trusted Statistics Section */
.stats-section {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  padding: 60px 0;
  margin-top: 100px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 0;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.stat-number {
  font-size: 3.2rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  margin-bottom: 6px;
}

.stat-label {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
}

/* About Section */
.about-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
}

.about-bullets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  width: 100%;
}

.bullet-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-md);
  padding: 30px 24px;
}

.bullet-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 77, 79, 0.08);
  border: 1px solid rgba(255, 77, 79, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
  flex-shrink: 0;
}

.bullet-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent-primary);
}

.bullet-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bullet-text h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}

.bullet-text p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Features Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-lg);
  padding: 40px 30px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(255, 77, 79, 0.06), transparent 50%);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 77, 79, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 77, 79, 0.05);
}

.feature-icon-box {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--accent-primary);
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-box {
  background: var(--accent-gradient);
  color: var(--text-primary);
  border-color: transparent;
  box-shadow: var(--accent-glow);
}

.feature-icon-box svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 1.8px;
}

.feature-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Streaming Categories Section */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.category-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-md);
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 80px;
}

.category-card:hover {
  border-color: rgba(255, 77, 79, 0.25);
}

.category-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.category-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}

.category-card:hover h3 {
  color: var(--accent-primary);
}

.category-card p {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* Why Choose HiTV Section */
.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.why-illustration {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 480px;
}

/* Custom CSS illustration for playback experience */
.phone-playback-illustration {
  width: 260px;
  height: 450px;
  background: var(--bg-card);
  border-radius: 40px;
  border: 4px solid #2e2e3e;
  box-shadow: var(--card-shadow);
  position: relative;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.illustration-glowing-back {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 122, 89, 0.25) 0%, transparent 70%);
  filter: blur(40px);
  z-index: -1;
  top: 10%;
}

.phone-screen {
  background: #000;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.phone-header-notch {
  width: 110px;
  height: 18px;
  background: #2e2e3e;
  border-radius: 0 0 14px 14px;
  margin: 0 auto;
  z-index: 10;
}

.mock-video-player {
  width: 100%;
  height: 150px;
  background: url('../assets/kdrama.png') no-repeat center center / cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.player-play-btn {
  z-index: 5;
  width: 44px;
  height: 44px;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--accent-glow);
}

.player-play-btn svg {
  width: 16px;
  height: 16px;
  fill: #fff;
  margin-left: 2px;
}

.player-controls-row {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 5;
}

.player-time-bar {
  width: 70%;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  position: relative;
}

.player-time-fill {
  width: 45%;
  height: 100%;
  background: var(--accent-primary);
  border-radius: 2px;
}

.player-time-text {
  font-size: 0.6rem;
  color: #fff;
}

.mock-details {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
  background: var(--bg-secondary);
}

.mock-title-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mock-title-line {
  height: 10px;
  width: 60%;
  background: #fff;
  border-radius: 4px;
}

.mock-subtitle-line {
  height: 6px;
  width: 40%;
  background: var(--text-secondary);
  border-radius: 3px;
}

.mock-downloading-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-sm);
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mock-dl-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 75%;
}

.mock-dl-title {
  height: 6px;
  width: 80%;
  background: var(--text-secondary);
  border-radius: 3px;
}

.mock-dl-progress {
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1px;
}

.mock-dl-progress-fill {
  width: 85%;
  height: 100%;
  background: var(--accent-gradient);
}

.mock-dl-icon {
  width: 16px;
  height: 16px;
  color: var(--accent-primary);
  animation: pulse-op 1.5s infinite alternate;
}

@keyframes pulse-op {
  0% { opacity: 0.4; }
  100% { opacity: 1; }
}

.why-timeline {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.timeline-item {
  display: flex;
  gap: 20px;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 20px;
  width: 2px;
  height: calc(100% - 10px);
  background: rgba(255, 255, 255, 0.05);
}

.timeline-item:last-child::before {
  display: none;
}

.timeline-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  flex-shrink: 0;
  z-index: 2;
  transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-number {
  border-color: var(--accent-primary);
  box-shadow: 0 0 15px rgba(255, 77, 79, 0.2);
  color: var(--accent-primary);
}

.timeline-content h3 {
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.timeline-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* App Screenshots Section */
/* App Screenshots Section */
.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.screenshot-card {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: var(--transition-smooth);
}

.screenshot-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 77, 79, 0.25);
  box-shadow: 0 20px 40px rgba(255, 77, 79, 0.1);
}

.screenshot-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* How It Works Section */
.how-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.how-timeline::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: rgba(255, 255, 255, 0.05);
  z-index: 1;
}

.how-step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.how-icon-box {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
  color: var(--accent-primary);
  position: relative;
  transition: var(--transition-smooth);
}

.how-step:hover .how-icon-box {
  border-color: var(--accent-primary);
  background: var(--bg-primary);
  box-shadow: 0 0 20px rgba(255, 77, 79, 0.15);
}

.how-icon-box svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
}

.how-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-gradient);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-step h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.how-step p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  max-width: 220px;
  margin: 0 auto;
}

/* User Reviews Section */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  width: 100%;
}

.review-card {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-md);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.reviewer-avatar-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
}

.reviewer-name {
  font-weight: 600;
  font-size: 1.05rem;
}

.reviewer-country {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.review-quote {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.7;
}

.review-quote::before {
  content: '"';
  color: var(--accent-primary);
  font-size: 2.5rem;
  line-height: 0;
  vertical-align: middle;
  margin-right: 4px;
}

/* FAQ Accordion Section */
.faq-accordion {
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover, .faq-item.active {
  border-color: rgba(255, 77, 79, 0.2);
}

.faq-trigger {
  width: 100%;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.faq-trigger:hover {
  color: var(--accent-primary);
}

.faq-icon-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.faq-item.active .faq-icon-circle {
  background: var(--accent-gradient);
  transform: rotate(180deg);
}

.faq-icon-circle svg {
  width: 14px;
  height: 14px;
  stroke: var(--text-secondary);
  transition: var(--transition-smooth);
}

.faq-item.active .faq-icon-circle svg {
  stroke: #fff;
}

/* Smooth Accordion Body Height Transition */
.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-item.active .faq-panel {
  grid-template-rows: 1fr;
}

.faq-panel-content {
  overflow: hidden;
  padding: 0 24px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.active .faq-panel-content {
  padding-bottom: 24px;
}

/* Download FAQ Accordion Body padding fixes */

/* Download CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, #1A0D10 0%, #0F090A 100%);
  border: 1px solid rgba(255, 77, 79, 0.15);
  border-radius: var(--border-radius-lg);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 77, 79, 0.12) 0%, transparent 70%);
  filter: blur(40px);
}

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

.cta-title {
  font-size: 3rem;
  margin-bottom: 16px;
}

.cta-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
}

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

/* Footer styling */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0 30px 0;
}

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

.footer-col-about {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

.social-icon-btn:hover {
  background: var(--accent-gradient);
  color: #fff;
  border-color: transparent;
  transform: translateY(-3px);
}

.social-icon-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-col h3 {
  font-size: 1.1rem;
  margin-bottom: 24px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--text-primary);
  padding-left: 4px;
}

.footer-col-newsletter {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  width: 100%;
}

.newsletter-input {
  flex-grow: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-sm);
  padding: 12px 16px;
  color: #fff;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition-fast);
}

.newsletter-input:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 10px rgba(255, 77, 79, 0.1);
}

.newsletter-btn {
  background: var(--accent-gradient);
  color: #fff;
  border-radius: var(--border-radius-sm);
  padding: 0 20px;
  font-weight: 600;
}

.newsletter-btn:hover {
  box-shadow: var(--accent-glow);
}

.newsletter-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-bottom-links a {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.footer-bottom-links a:hover {
  color: var(--text-primary);
}

.copyright {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Animations / Reveal Transitions */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.reveal-left {
  transform: translateX(-40px);
}

.reveal.reveal-right {
  transform: translateX(40px);
}

.reveal.visible {
  opacity: 1;
  transform: translate(0);
}

/* Delay modifiers */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }

/* Focus states for accessibility */
*:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 4px;
}

/* Responsive Breakpoints */
@media (max-width: 1199px) {
  .hero-title {
    font-size: 3.2rem;
  }
  .carousel-btn-prev { left: 10%; }
  .carousel-btn-next { right: 10%; }
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-desc {
    max-width: 600px;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-rating {
    justify-content: center;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .why-illustration {
    order: 2;
  }
  .why-timeline {
    order: 1;
  }
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .about-bullets {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-secondary);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    flex-direction: column;
    padding: 100px 40px 40px 40px;
    transition: var(--transition-smooth);
    z-index: 1005;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .hamburger {
    display: flex;
  }
  
  .nav-right .btn {
    display: none; /* Hide download button on tablet/mobile header */
  }
  
  .section-title {
    font-size: 2.1rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stat-item:nth-child(2)::after {
    display: none;
  }
  
  .categories-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .screenshots-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .how-timeline {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .how-timeline::before {
    display: none;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-bottom-links {
    justify-content: center;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.4rem;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stat-item::after {
    display: none !important;
  }
  .stat-number {
    font-size: 2.8rem;
  }
  .about-bullets {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .categories-grid {
    grid-template-columns: 1fr;
  }
  .cta-title {
    font-size: 2.1rem;
  }
  .cta-actions {
    flex-direction: column;
  }
  .review-card {
    padding: 24px;
  }
  .review-quote {
    font-size: 1rem;
  }
}

/* ==========================================================================
   Is HiTV Safe Page Styles
   ========================================================================== */

.safety-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  padding: 160px 0 80px 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  overflow: hidden;
}

.safety-hero-content {
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.shield-wrapper {
  position: relative;
  margin-bottom: 30px;
}

.shield-svg-container {
  width: 140px;
  height: 140px;
  color: var(--accent-primary);
  filter: drop-shadow(0 0 20px rgba(255, 77, 79, 0.4));
}

.security-badge {
  position: absolute;
  bottom: 0;
  right: -10px;
  background: #52c41a;
  color: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(82, 196, 26, 0.5);
  border: 3px solid var(--bg-primary);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  width: 100%;
}

.trust-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-md);
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.trust-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 77, 79, 0.25);
  box-shadow: 0 10px 30px rgba(255, 77, 79, 0.08);
}

.trust-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 77, 79, 0.08);
  border: 1px solid rgba(255, 77, 79, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
}

.trust-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--accent-primary);
}

.trust-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}

.trust-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.safety-layout {
  max-width: 850px;
  margin: 0 auto;
  padding: 60px 24px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.safety-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.safety-section h2 {
  font-size: 2.2rem;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

.safety-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--accent-gradient);
  border-radius: 2px;
}

.safety-section-center {
  align-items: center;
  text-align: center;
}

.safety-section-center h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.safety-card-box {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.safety-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.safety-list-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.safety-list-icon {
  width: 24px;
  height: 24px;
  background: rgba(82, 196, 26, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #52c41a;
  flex-shrink: 0;
  margin-top: 2px;
}

.safety-list-icon svg {
  width: 12px;
  height: 12px;
  stroke: #52c41a;
}

.safety-list-text h4 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 4px;
}

.safety-list-text p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.permissions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.permission-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--border-radius-sm);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.permission-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  flex-shrink: 0;
}

.permission-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.permission-info h4 {
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 6px;
}

.permission-info p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.final-cta-section {
  background: linear-gradient(135deg, rgba(255, 77, 79, 0.05) 0%, rgba(255, 122, 89, 0.05) 100%);
  border: 1px solid rgba(255, 77, 79, 0.15);
  border-radius: var(--border-radius-lg);
  padding: 60px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.final-cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 77, 79, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.final-cta-section h2 {
  font-size: 2.4rem;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  z-index: 1;
}

.final-cta-section p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  z-index: 1;
}

.final-cta-actions {
  display: flex;
  gap: 16px;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 992px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .safety-layout {
    gap: 60px;
  }
  .safety-section h2 {
    font-size: 1.8rem;
  }
  .permissions-grid {
    grid-template-columns: 1fr;
  }
  .final-cta-section h2 {
    font-size: 2rem;
  }
  .final-cta-section {
    padding: 40px 24px;
  }
}

@media (max-width: 576px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .safety-hero, .legal-hero {
    padding: 120px 0 60px 0;
  }
  .safety-hero h1, .legal-hero h1 {
    font-size: 2.2rem;
  }
  .safety-card-box {
    padding: 24px 16px;
  }
  .final-cta-actions {
    flex-direction: column;
    width: 100%;
  }
  .final-cta-actions .btn {
    width: 100%;
  }
}

/* ==========================================================================
   Is HiTV Legal Page Styles
   ========================================================================== */

.legal-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  padding: 160px 0 80px 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  overflow: hidden;
}

.legal-hero-content {
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.scales-wrapper {
  position: relative;
  margin-bottom: 30px;
}

.scales-svg-container {
  width: 140px;
  height: 140px;
  color: var(--accent-primary);
  filter: drop-shadow(0 0 20px rgba(255, 77, 79, 0.4));
}

.legal-badge {
  position: absolute;
  bottom: -5px;
  right: -5px;
  background: var(--accent-primary);
  color: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(255, 77, 79, 0.4);
  border: 3px solid var(--bg-primary);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
}

/* Timeline Layout */
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  margin-top: 50px;
  width: 100%;
}

.timeline-grid::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 12.5%;
  width: 75%;
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
  z-index: 1;
}

.timeline-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 2;
}

.timeline-icon-box {
  width: 48px;
  height: 48px;
  background: var(--bg-card);
  border: 2px solid rgba(255, 77, 79, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
  margin-bottom: 20px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 0 15px rgba(255, 77, 79, 0.05);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.timeline-step:hover .timeline-icon-box {
  background: var(--accent-gradient);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--accent-glow);
}

.timeline-step h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.timeline-step p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

@media (max-width: 992px) {
  .timeline-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .timeline-grid::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .timeline-step h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .timeline-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .timeline-step {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 16px;
  }
  .timeline-icon-box {
    margin-bottom: 0;
    flex-shrink: 0;
  }
}

/* ==========================================================================
   HiTV for PC Page Styles
   ========================================================================== */

.pc-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  width: 100%;
}

.pc-hero-grid .hero-content {
  text-align: left !important;
  align-items: flex-start !important;
  margin: 0 !important;
}

.pc-hero-illustration {
  position: relative;
  width: 100%;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* CSS Mockups */
.mockup-monitor {
  position: absolute;
  width: 320px;
  height: 200px;
  background: #1e1e2d;
  border: 10px solid #2d2d3e;
  border-radius: 12px;
  top: 30px;
  left: 10px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  z-index: 2;
  transition: transform 0.3s ease;
}

.mockup-monitor::after {
  content: '';
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 18px;
  background: #2d2d3e;
}

.mockup-monitor::before {
  content: '';
  position: absolute;
  bottom: -36px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 8px;
  background: #252535;
  border-radius: 4px;
}

.mockup-laptop {
  position: absolute;
  width: 280px;
  height: 175px;
  background: #161622;
  border: 8px solid #222232;
  border-radius: 8px 8px 0 0;
  bottom: 40px;
  right: 10px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
  z-index: 3;
  transition: transform 0.3s ease;
}

.mockup-laptop::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 310px;
  height: 12px;
  background: #2c2c3c;
  border-radius: 0 0 12px 12px;
}

.mockup-screen-content {
  width: 100%;
  height: 100%;
  background: url('../assets/kdrama.png') no-repeat center center / cover;
  border-radius: 2px;
  position: relative;
}

.mockup-screen-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 11, 15, 0.3);
}

/* Floating UI Badges */
.floating-badge {
  position: absolute;
  background: rgba(29, 29, 40, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-radius: var(--border-radius-sm);
  padding: 10px 14px;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  z-index: 4;
}

.badge-hd {
  top: 15px;
  left: -20px;
  color: #52c41a;
  border-color: rgba(82, 196, 26, 0.25);
}

.badge-sub {
  top: 95px;
  right: -25px;
  color: var(--accent-primary);
  border-color: rgba(255, 77, 79, 0.25);
}

.badge-trending {
  bottom: 10px;
  left: -15px;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(255, 77, 79, 0.15) 0%, rgba(255, 122, 89, 0.15) 100%);
  border-color: rgba(255, 77, 79, 0.3);
}

.badge-progress {
  top: 130px;
  left: 200px;
  width: 130px;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.progress-bar-mini {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill-mini {
  width: 70%;
  height: 100%;
  background: var(--accent-gradient);
}

.floating-icon-btn {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: var(--accent-glow);
  z-index: 4;
}

.float-play {
  top: 100px;
  left: 145px;
}

.float-download {
  bottom: 25px;
  right: -10px;
  background: #52c41a;
  box-shadow: 0 0 15px rgba(82, 196, 26, 0.4);
}

/* Comparison Table */
.compare-table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin-top: 40px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-md);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  scrollbar-width: thin;
  scrollbar-color: var(--accent-primary) rgba(255, 255, 255, 0.02);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 650px;
}

.compare-table th, .compare-table td {
  padding: 22px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.compare-table th {
  background: rgba(255, 255, 255, 0.02);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  font-family: 'Outfit', sans-serif;
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table td:first-child {
  font-weight: 600;
  color: #fff;
}

.compare-table td {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.4;
}

.compare-table tr:hover td {
  background: rgba(255, 255, 255, 0.01);
}

/* Responsive Overrides */
@media (max-width: 992px) {
  .pc-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .pc-hero-grid .hero-content {
    text-align: center !important;
    align-items: center !important;
  }
  
  .pc-hero-illustration {
    max-width: 480px;
    margin: 30px auto 0 auto;
  }
}

@media (max-width: 576px) {
  .pc-hero-illustration {
    height: 320px;
    transform: scale(0.85);
  }
  
  .badge-hd {
    left: 10px;
  }
  
  .badge-sub {
    right: 10px;
  }
  
  .float-download {
    right: 10px;
  }
}
