/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #c8e62f;
  --primary-dark: #8fe22f;
  --secondary-color: #111111;
  --text-color: #ffffff;
  --text-secondary: #aaaaaa;
  --bg-dark: #000000;
  --bg-card: #151515;
  --border-color: #222222;
  --transition: all 0.3s ease;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 4K and Large Screen Optimizations */
@media (min-width: 2000px) {
  :root {
    font-size: 18px;
  }

  .container {
    max-width: 1600px;
  }
}

@media (min-width: 2560px) {
  :root {
    font-size: 20px;
  }

  .container {
    max-width: 2000px;
  }
}

@media (min-width: 3840px) {
  :root {
    font-size: 24px;
  }

  .container {
    max-width: 2800px;
  }

  .hero-wrapper {
    gap: 8rem;
  }
}

/* Header and Navigation */
.header {
  background-color: rgba(0, 0, 0, 0.9);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
}

.navbar {
  padding: 1rem 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.75rem;
}

.logo:hover {
  color: var(--primary-dark);
  transform: scale(1.05);
}

.logo-img {
  height: 2.2rem;
  width: auto;
  transition: var(--transition);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  color: var(--text-color);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 500;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-color);
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dropdown-toggle .arrow {
  font-size: 0.7rem;
  transition: var(--transition);
}

.dropdown:hover .arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--bg-card);
  list-style: none;
  min-width: 200px;
  padding: 0.5rem 0;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  margin-top: 0.5rem;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-color);
  text-decoration: none;
  transition: var(--transition);
}

.dropdown-menu a:hover {
  background-color: rgba(200, 230, 47, 0.1);
  color: var(--primary-color);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 4px;
}

.nav-toggle span {
  width: 1.5rem;
  height: 0.2rem;
  background-color: var(--text-color);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg,
      rgba(0, 0, 0, 0.95) 0%,
      rgba(20, 20, 20, 1) 100%);
  padding: 4rem 0 6rem;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 50%,
      rgba(200, 230, 47, 0.05) 0%,
      transparent 60%);
  pointer-events: none;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.logo-icon {
  font-size: 2rem;
  color: var(--primary-color);
  filter: drop-shadow(0 0 10px rgba(200, 230, 47, 0.5));
}

.logo-text {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--text-color);
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-color);
  margin: 0;
}

.hero-title .highlight {
  color: var(--primary-color);
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-benefits {
  font-size: 1.1rem;
  color: var(--text-color);
  font-weight: 500;
  margin: 0.5rem 0;
}

.hero-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 1rem 0;
  max-width: 90%;
}

.btn-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: #000;
  font-weight: 700;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  margin-top: 1rem;
  align-self: flex-start;
  border: none;
  box-shadow: 0 4px 20px rgba(200, 230, 47, 0.3);
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(200, 230, 47, 0.4);
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.hero-right {
  position: relative;
}

.platform-links {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.platform-link {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  padding: 0.5rem 0;
  position: relative;
}

.platform-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

.platform-link:hover {
  color: var(--primary-color);
}

.platform-link:hover::after {
  width: 100%;
}

.hero-visual {
  position: relative;
}

.tv-frame {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8),
    inset 0 0 0 2px rgba(255, 255, 255, 0.1);
  position: relative;
}

.tv-frame::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  height: 95%;
  border-radius: 15px;
  background: linear-gradient(135deg,
      rgba(200, 230, 47, 0.1) 0%,
      transparent 50%);
  pointer-events: none;
}

.tv-screen {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  border-radius: 12px;
  padding: 2rem;
  min-height: 31rem;
  position: relative;
  overflow: hidden;
}

.tv-content {
  position: relative;
  z-index: 1;
}

.featured-movie {
  margin-bottom: 2rem;
}

.movie-poster {
  width: 100%;
  height: 12.5rem;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
  display: block;
}

.movie-info {
  color: var(--text-color);
}

.movie-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-color);
}

.movie-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.movie-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.movie-synopsis {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.movie-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-watch {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: #000;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-block;
}

.btn-watch:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(200, 230, 47, 0.4);
}

.btn-info {
  background: transparent;
  color: var(--text-color);
  border: 1px solid var(--border-color);
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-block;
}

.btn-info:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.continue-watching {
  margin-top: 2rem;
}

.continue-watching h4 {
  font-size: 1rem;
  color: var(--text-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.watch-list {
  display: flex;
  gap: 1rem;
}

.watch-item {
  width: 120px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  flex-shrink: 0;
  display: block;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary-color);
  color: #000000;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(200, 230, 47, 0.3);
}

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

.btn-secondary:hover {
  background-color: var(--text-color);
  color: var(--bg-dark);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: #000000;
}

/* Sections */
section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 800;
}

.section-subtitle {
  font-size: 1.2rem;
  text-align: center;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

/* Categories Section */
.categories-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.category-card {
  background-color: var(--bg-card);
  padding: 2rem 1.5rem;
  border-radius: 12px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border-color);
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(200, 230, 47, 0.2);
  background-color: rgba(200, 230, 47, 0.05);
}

.category-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.category-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--text-color);
  font-weight: 600;
}

.category-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Platforms Section */
.platforms-section {
  background-color: var(--bg-dark);
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  justify-items: center;
  align-items: stretch;
  max-width: 1400px;
  margin: 0 auto;
}

@media (min-width: 2560px) {
  .platforms-grid {
    max-width: 1800px;
    gap: 3rem;
  }
}

.platform-card {
  width: 100%;
  max-width: 320px;
  justify-self: center;
  background: rgba(21, 21, 21, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  position: relative;
  overflow: hidden;
}

.platform-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(200, 230, 47, 0.1), transparent 70%);
  opacity: 0;
  transition: var(--transition);
}

.platform-card:hover {
  transform: translateY(-15px);
  border-color: rgba(200, 230, 47, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(200, 230, 47, 0.1);
  background: rgba(21, 21, 21, 0.8);
}

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

.platform-icon-wrapper {
  width: 80px;
  height: 80px;
  background: rgba(200, 230, 47, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  transition: var(--transition);
  color: var(--primary-color);
  position: relative;
  z-index: 1;
}

.platform-card:hover .platform-icon-wrapper {
  background: var(--primary-color);
  color: #000;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 20px rgba(200, 230, 47, 0.4);
}

.platform-svg {
  transition: var(--transition);
}

.platform-card h3 {
  font-size: 1.6rem;
  margin: 0;
  color: var(--text-color);
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.platform-card p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
  position: relative;
  z-index: 1;
}

.platform-card .btn {
  margin-top: auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* Installation Section */
.installation-section {
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark) 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.installation-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%,
      rgba(200, 230, 47, 0.03) 0%,
      transparent 70%);
  pointer-events: none;
}

.installation-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
  justify-items: center;
}

.step-card {
  background: linear-gradient(135deg,
      rgba(26, 26, 26, 0.8) 0%,
      rgba(20, 20, 20, 0.9) 100%);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  width: 300px;
  max-width: 100%;
  justify-self: center;
  margin: 0 auto;
}

.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg,
      transparent 0%,
      var(--primary-color) 50%,
      transparent 100%);
  opacity: 0;
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-10px);
  border-color: rgba(200, 230, 47, 0.3);
  box-shadow: 0 20px 40px rgba(200, 230, 47, 0.15),
    0 0 0 1px rgba(200, 230, 47, 0.1);
}

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

/* Center the 4th step card - span middle columns and center */
.step-card:nth-child(4) {
  grid-column: 1 / 4;
  justify-self: center;
  width: 300px;
  max-width: 100%;
  margin: 0 auto;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  color: #000;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 20px rgba(200, 230, 47, 0.3);
  transition: var(--transition);
}

.step-card:hover .step-number {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 30px rgba(200, 230, 47, 0.4);
}

.step-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.step-content p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1rem;
}

.installation-note {
  background: linear-gradient(135deg,
      rgba(200, 230, 47, 0.1) 0%,
      rgba(200, 230, 47, 0.05) 100%);
  border: 1px solid rgba(200, 230, 47, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.note-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 10px rgba(200, 230, 47, 0.3));
}

.note-content h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.note-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.note-content li {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.note-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.1rem;
}

/* Features Section */
.features-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.features-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%,
      rgba(200, 230, 47, 0.05) 0%,
      transparent 50%);
  pointer-events: none;
}

.features-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.features-label {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(135deg,
      rgba(200, 230, 47, 0.1) 0%,
      rgba(200, 230, 47, 0.05) 100%);
  border: 1px solid rgba(200, 230, 47, 0.2);
  border-radius: 50px;
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.features-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-color);
  line-height: 1.2;
}

.features-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 1000px;
  margin: 0 auto;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

.feature-card {
  background: linear-gradient(135deg,
      rgba(26, 26, 26, 0.8) 0%,
      rgba(20, 20, 20, 0.9) 100%);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg,
      transparent 0%,
      var(--primary-color) 50%,
      transparent 100%);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(200, 230, 47, 0.3);
  box-shadow: 0 20px 40px rgba(200, 230, 47, 0.15),
    0 0 0 1px rgba(200, 230, 47, 0.1);
}

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

.feature-icon-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon {
  font-size: 3.5rem;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 4px 10px rgba(200, 230, 47, 0.3));
  transition: var(--transition);
}

.feature-glow {
  position: absolute;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle,
      rgba(200, 230, 47, 0.2) 0%,
      transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: var(--transition);
  z-index: 1;
}

.feature-card:hover .feature-glow {
  opacity: 1;
  transform: scale(1.5);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-color);
  line-height: 1.3;
}

.feature-description {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.feature-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg,
      rgba(200, 230, 47, 0.1) 0%,
      rgba(200, 230, 47, 0.05) 100%);
  border: 1px solid rgba(200, 230, 47, 0.2);
  border-radius: 20px;
  color: var(--primary-color);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-top: 0.5rem;
}

/* Comparison Section */
.comparison-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.comparison-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%,
      rgba(200, 230, 47, 0.03) 0%,
      transparent 70%);
  pointer-events: none;
}

.comparison-container {
  position: relative;
  z-index: 1;
}

.comparison-table-wrapper {
  overflow-x: auto;
  margin-bottom: 4rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  background: linear-gradient(135deg,
      rgba(26, 26, 26, 0.8) 0%,
      rgba(20, 20, 20, 0.9) 100%);
}

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

.comparison-table thead {
  background: rgba(200, 230, 47, 0.1);
}

.comparison-table th {
  padding: 1.5rem 1rem;
  text-align: left;
  font-weight: 700;
  color: var(--text-color);
  border-bottom: 2px solid var(--border-color);
  font-size: 1.1rem;
}

.comparison-table th.highlight-column {
  background: rgba(200, 230, 47, 0.2);
  color: var(--primary-color);
  text-align: center;
}

.comparison-table tbody tr {
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.comparison-table tbody tr:hover {
  background: rgba(200, 230, 47, 0.05);
}

.comparison-table td {
  padding: 1.25rem 1rem;
  color: var(--text-secondary);
  font-size: 1rem;
}

.comparison-table td.feature-name {
  font-weight: 600;
  color: var(--text-color);
}

.comparison-table td.highlight-column {
  background: rgba(200, 230, 47, 0.1);
  text-align: center;
  color: var(--text-color);
  font-weight: 600;
}

.comparison-table .check-mark {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2rem;
  margin-right: 0.5rem;
}

.comparison-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.highlight-card {
  background: linear-gradient(135deg,
      rgba(26, 26, 26, 0.8) 0%,
      rgba(20, 20, 20, 0.9) 100%);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: var(--transition);
}

.highlight-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(200, 230, 47, 0.2);
  background: linear-gradient(135deg,
      rgba(200, 230, 47, 0.1) 0%,
      rgba(20, 20, 20, 0.9) 100%);
}

.highlight-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.highlight-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.highlight-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* FAQs Section */
.faqs-section {
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark) 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.faqs-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%,
      rgba(200, 230, 47, 0.03) 0%,
      transparent 70%);
  pointer-events: none;
}

.faqs-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.faq-item {
  background: linear-gradient(135deg,
      rgba(26, 26, 26, 0.8) 0%,
      rgba(20, 20, 20, 0.9) 100%);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(200, 230, 47, 0.3);
  box-shadow: 0 4px 20px rgba(200, 230, 47, 0.1);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.5rem 2rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-color);
  font-size: 1.1rem;
  font-weight: 600;
  transition: var(--transition);
  gap: 1rem;
}

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

.faq-question:focus {
  outline: none;
  color: var(--primary-color);
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--primary-color);
  transition: var(--transition);
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 230, 47, 0.1);
  border-radius: 50%;
  line-height: 1;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: rgba(200, 230, 47, 0.2);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 2rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1rem;
  margin: 0;
}

/* Screenshots Section */
.screenshots-section {
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark) 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.screenshots-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%,
      rgba(200, 230, 47, 0.03) 0%,
      transparent 70%);
  pointer-events: none;
}

.screenshots-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.screenshots-label {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(135deg,
      rgba(200, 230, 47, 0.1) 0%,
      rgba(200, 230, 47, 0.05) 100%);
  border: 1px solid rgba(200, 230, 47, 0.2);
  border-radius: 50px;
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.screenshots-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-color);
  line-height: 1.2;
}

.screenshots-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.screenshots-container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4rem;
}

.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.carousel-btn {
  background: linear-gradient(135deg,
      rgba(200, 230, 47, 0.1) 0%,
      rgba(200, 230, 47, 0.05) 100%);
  border: 1px solid rgba(200, 230, 47, 0.2);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
  z-index: 2;
}

.carousel-btn:hover {
  background: linear-gradient(135deg,
      rgba(200, 230, 47, 0.2) 0%,
      rgba(200, 230, 47, 0.1) 100%);
  border-color: rgba(200, 230, 47, 0.4);
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(200, 230, 47, 0.3);
}

.carousel-btn:active {
  transform: scale(0.95);
}

.carousel-btn svg {
  width: 24px;
  height: 24px;
}

.carousel-container {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 1.5rem;
}

.carousel-slide {
  min-width: calc(25% - 1.125rem);
  flex: 0 0 calc(25% - 1.125rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 0 0.5rem;
}

.screenshot-image-wrapper {
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(200, 230, 47, 0.1);
  position: relative;
  transition: var(--transition);
  background: var(--bg-dark);
}

.screenshot-image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(200, 230, 47, 0.1) 0%,
      transparent 50%);
  opacity: 0;
  transition: var(--transition);
  z-index: 1;
  pointer-events: none;
}

.screenshot-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: var(--transition);
}

.carousel-slide:hover .screenshot-image-wrapper {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 80px rgba(200, 230, 47, 0.2),
    0 0 0 2px rgba(200, 230, 47, 0.2);
}

.carousel-slide:hover .screenshot-image-wrapper::before {
  opacity: 1;
}

.carousel-slide:hover .screenshot-image {
  transform: scale(1.05);
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 3rem;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.indicator:hover {
  background: rgba(200, 230, 47, 0.4);
  transform: scale(1.2);
}

.indicator.active {
  background: var(--primary-color);
  width: 32px;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(200, 230, 47, 0.5);
}

.screenshot-content {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  border-radius: 20px;
  overflow: hidden;
  min-height: 500px;
  position: relative;
}

.screenshot-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: rgba(26, 26, 26, 0.8);
  border-bottom: 1px solid var(--border-color);
}

.screenshot-nav {
  display: flex;
  gap: 0.4rem;
}

.nav-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.screenshot-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-color);
}

.screenshot-icon {
  font-size: 1.1rem;
  opacity: 0.7;
}

/* OnStream Screen */
.screenshot-OnStream {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

.screenshot-hero {
  padding: 1.5rem;
  position: relative;
}

.screenshot-hero-poster {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border-radius: 12px;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}

.screenshot-hero-poster::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(200, 230, 47, 0.15) 0%,
      rgba(0, 0, 0, 0.5) 100%);
}

.screenshot-hero-info h4 {
  color: var(--text-color);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.screenshot-hero-info p {
  color: var(--text-secondary);
  font-size: 0.8rem;
}

.screenshot-categories {
  padding: 0 1.5rem 1.5rem;
}

.category-row {
  display: flex;
  gap: 0.75rem;
}

.category-item {
  flex: 1;
  height: 100px;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

/* Library Screen */
.screenshot-library {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

.library-content {
  padding: 1.5rem;
}

.library-section {
  margin-bottom: 2rem;
}

.library-section h5 {
  color: var(--text-color);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.library-items {
  display: flex;
  gap: 0.75rem;
}

.library-item {
  flex: 1;
  height: 80px;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

/* Player Screen */
.screenshot-player {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

.player-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.player-poster-large {
  width: 100%;
  max-width: 200px;
  height: 280px;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border-radius: 12px;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.player-poster-large::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(200, 230, 47, 0.2) 0%,
      rgba(0, 0, 0, 0.6) 100%);
}

.player-controls {
  width: 100%;
}

.control-bar {
  margin-bottom: 1.5rem;
}

.progress-bar {
  width: 100%;
  height: 4px;
  background: var(--border-color);
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  border-radius: 2px;
}

.control-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-size: 1.5rem;
  color: var(--text-color);
}

/* Search Screen */
.screenshot-search {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

.logo-img {
  height: 48px;
  width: 48px;
}

.search-content {
  padding: 1.5rem;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-dark);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  margin-bottom: 1.5rem;
}

.search-bar span {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.search-bar input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-color);
  font-size: 0.9rem;
  outline: none;
}

.search-bar input::placeholder {
  color: var(--text-secondary);
}

.search-results {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.result-item {
  height: 60px;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

/* Downloads Screen */
.screenshot-downloads {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

.downloads-content {
  padding: 1.5rem;
}

.downloads-section h5 {
  color: var(--text-color);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.downloads-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.download-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  background: rgba(26, 26, 26, 0.5);
  border-radius: 10px;
  border: 1px solid var(--border-color);
}

.download-poster {
  width: 60px;
  height: 80px;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border-radius: 6px;
  flex-shrink: 0;
}

.download-info {
  flex: 1;
}

.download-info h6 {
  color: var(--text-color);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

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

.download-progress {
  width: 100%;
  margin-top: 0.5rem;
}

.progress-bar-small {
  width: 100%;
  height: 3px;
  background: var(--border-color);
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill-small {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  border-radius: 2px;
  width: 75%;
  transition: width 0.3s ease;
}

.screenshot-label {
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
}

/* Platform Page Styles */
.platform-hero {
  background: linear-gradient(135deg,
      rgba(200, 230, 47, 0.1) 0%,
      rgba(0, 0, 0, 0.9) 100%);
  padding: 6rem 0 4rem;
  text-align: center;
}

.platform-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.platform-hero p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.download-section {
  padding: 4rem 0;
}

.download-card {
  background-color: var(--bg-card);
  border-radius: 12px;
  padding: 3rem;
  text-align: center;
  border: 1px solid var(--border-color);
  max-width: 800px;
  margin: 0 auto;
}

.download-card h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.download-card p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.8;
  font-size: 1.125rem;
}

.download-info {
  background-color: var(--bg-dark);
  border-radius: 8px;
  padding: 2rem;
  margin: 2rem 0;
  text-align: left;
}

.download-info h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.download-info ul {
  list-style: none;
  padding-left: 0;
}

.download-info li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  padding-left: 1.5rem;
  position: relative;
}

.download-info li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* Content Pages */
.content-page {
  padding: 6rem 0 4rem;
}

.content-page h1 {
  font-size: 3rem;
  margin-bottom: 2rem;
  text-align: center;
}

.content-page h2 {
  font-size: 2rem;
  margin: 2rem 0 1rem;
  color: var(--primary-color);
}

.content-page p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.content-page ul,
.content-page ol {
  color: var(--text-secondary);
  margin: 1.5rem 0;
  padding-left: 2rem;
  line-height: 1.8;
}

.content-page li {
  margin-bottom: 0.75rem;
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--bg-card);
  padding: 3rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-color);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem;
  background-color: var(--bg-dark);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  color: var(--text-color);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(200, 230, 47, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

/* Footer */
.footer {
  background-color: var(--bg-card);
  border-top: 1px solid var(--border-color);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  color: var(--text-color);
}

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

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.9rem;
}

.footer-section a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .platforms-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

  .platform-card {
    padding: 2.25rem 1.75rem;
  }
}

/* Tablet-specific styles for tv-frame (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {

  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .container {
    max-width: 100%;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
  }

  .hero .container {
    padding: 0 20px;
    max-width: 100%;
  }

  .hero {
    padding: 3.5rem 0 5rem;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .hero-wrapper {
    gap: 2rem;
    align-items: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .hero-left {
    padding-right: 1rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .hero-visual {
    width: 100%;
    max-width: 100%;
  }

  .tv-frame {
    padding: 1rem;
    border-radius: 16px;
    width: 100%;
    max-width: 100%;
  }

  .tv-frame::before {
    border-radius: 12px;
  }

  .tv-screen {
    padding: 1.25rem;
    min-height: 380px;
    border-radius: 8px;
  }

  .movie-poster {
    height: 150px;
    margin-bottom: 0.75rem;
  }

  .movie-title {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
  }

  .movie-meta {
    font-size: 0.7rem;
    gap: 0.625rem;
    margin-bottom: 0.625rem;
  }

  .movie-meta span {
    gap: 0.2rem;
  }

  .movie-synopsis {
    font-size: 0.75rem;
    margin-bottom: 0.875rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .movie-actions {
    gap: 0.625rem;
    flex-wrap: wrap;
  }

  .btn-watch,
  .btn-info {
    padding: 0.5rem 0.875rem;
    font-size: 0.8rem;
    flex: 1;
    min-width: 100px;
  }

  .continue-watching {
    margin-top: 1.25rem;
  }

  .continue-watching h4 {
    font-size: 0.85rem;
    margin-bottom: 0.625rem;
  }

  .watch-list {
    gap: 0.625rem;
  }

  .watch-item {
    width: 80px;
    height: 50px;
  }

  /* Prevent overflow on all sections */
  section {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
  }

  .features-section,
  .screenshots-section,
  .platforms-section,
  .installation-section,
  .faqs-section {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .features-grid,
  .platforms-grid,
  .installation-steps {
    width: 100%;
    max-width: 100%;
  }

  .screenshots-container {
    width: 100%;
    max-width: 100%;
    padding: 0 1.5rem;
    box-sizing: border-box;
  }

  .carousel-wrapper {
    width: 100%;
    max-width: 100%;
  }

  .carousel-container {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .footer {
    width: 100%;
    max-width: 100%;
  }

  .footer-content {
    width: 100%;
    max-width: 100%;
  }

  /* Header and navigation constraints */
  .header {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .navbar {
    width: 100%;
    max-width: 100%;
  }

  .navbar .container {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Ensure all content respects viewport */
  main {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
}

@media (max-width: 600px) {
  .platforms-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .platform-card {
    padding: 1.75rem 1.25rem;
  }

  .platform-icon {
    font-size: 2.75rem;
  }

  .platform-card h3 {
    font-size: 1.15rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--bg-card);
    width: 100%;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
    gap: 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    width: 100%;
    padding: 1rem 0;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background-color: var(--bg-dark);
    border: none;
    margin-top: 0.5rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

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

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .hero {
    padding: 3rem 0 4rem;
    min-height: auto;
  }

  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-left {
    text-align: center;
    align-items: center;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    max-width: 100%;
    text-align: left;
  }

  .btn-hero {
    align-self: center;
  }

  .platform-links {
    justify-content: center;
    gap: 1rem;
  }

  .tv-screen {
    min-height: 400px;
  }

  .watch-item {
    width: 100px;
    height: 60px;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
  }

  .platforms-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .platform-card {
    max-width: 100%;
    padding: 2rem 1.5rem;
  }

  .platform-icon {
    font-size: 3rem;
  }

  .platform-card h3 {
    font-size: 1.25rem;
  }

  .platform-card p {
    font-size: 0.9rem;
  }

  .installation-section {
    padding: 4rem 0;
  }

  .installation-steps {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  .step-card {
    padding: 2rem 1.5rem;
  }

  /* Center 4th card on tablet (3 column layout) */
  .step-card:nth-child(4) {
    grid-column: 2 / 3;
    justify-self: center;
  }

  .installation-note {
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1rem;
  }

  .note-icon {
    font-size: 2rem;
    align-self: center;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .installation-section {
    padding: 3rem 0;
  }

  .installation-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .step-card {
    padding: 2rem 1.25rem;
  }

  /* Reset 4th card positioning on mobile */
  .step-card:nth-child(4) {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .step-content h3 {
    font-size: 1.25rem;
  }

  .step-content p {
    font-size: 0.9rem;
  }

  .installation-note {
    padding: 1.5rem 1.25rem;
  }

  .note-content h4 {
    font-size: 1.25rem;
  }

  .note-content li {
    font-size: 0.9rem;
  }

  .features-title {
    font-size: 2rem;
  }

  .features-subtitle {
    font-size: 1.1rem;
  }

  .feature-card {
    padding: 2rem 1.5rem;
  }

  .comparison-section {
    padding: 4rem 0;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 1rem 0.75rem;
    font-size: 0.9rem;
  }

  .comparison-highlights {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .faqs-section {
    padding: 4rem 0;
  }

  .faq-question {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
  }

  .faq-answer {
    padding: 0 1.5rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 1.5rem 1.25rem 1.5rem;
  }

  .faq-answer p {
    font-size: 0.95rem;
  }

  .screenshots-section {
    padding: 4rem 0;
  }

  .screenshots-title {
    font-size: 2rem;
  }

  .screenshots-subtitle {
    font-size: 1.1rem;
  }

  .screenshots-container {
    padding: 0 2rem;
  }

  .carousel-wrapper {
    gap: 1rem;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
  }

  .carousel-btn svg {
    width: 20px;
    height: 20px;
  }

  .carousel-slide {
    min-width: calc(50% - 0.75rem);
    flex: 0 0 calc(50% - 0.75rem);
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .content-wrapper {
    padding: 2rem 1.5rem;
  }

  .content-page h1 {
    font-size: 2rem;
  }

  .content-page h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 2rem 0 3rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-benefits {
    font-size: 1rem;
  }

  .hero-description {
    font-size: 0.9rem;
  }

  .logo-text {
    font-size: 1.5rem;
  }

  .logo-icon {
    font-size: 1.5rem;
  }

  .tv-screen {
    min-height: 350px;
    padding: 1.5rem;
  }

  .movie-title {
    font-size: 1.25rem;
  }

  .watch-item {
    width: 80px;
    height: 50px;
  }

  .platform-hero h1 {
    font-size: 2rem;
  }

  .download-card {
    padding: 2rem 1.5rem;
  }

  .features-section {
    padding: 4rem 0;
  }

  .features-title {
    font-size: 1.75rem;
  }

  .features-subtitle {
    font-size: 1rem;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .platforms-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .platform-card {
    max-width: 100%;
    padding: 1.5rem 1rem;
  }

  .platform-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
  }

  .platform-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .platform-card p {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }

  .platform-card .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .comparison-section {
    padding: 3rem 0;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.75rem 0.5rem;
    font-size: 0.85rem;
  }

  .comparison-table th {
    font-size: 0.9rem;
  }

  .highlight-card {
    padding: 1.5rem;
  }

  .highlight-icon {
    font-size: 2.5rem;
  }

  .highlight-card h3 {
    font-size: 1.25rem;
  }

  .faqs-section {
    padding: 3rem 0;
  }

  .faq-question {
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
  }

  .faq-answer {
    padding: 0 1.25rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 1.25rem 1rem 1.25rem;
  }

  .faq-answer p {
    font-size: 0.9rem;
  }

  .faq-icon {
    width: 20px;
    height: 20px;
    font-size: 1.25rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .feature-card {
    padding: 2rem 1.25rem;
  }

  .feature-icon {
    font-size: 3rem;
  }

  .screenshots-section {
    padding: 3rem 0;
  }

  .screenshots-title {
    font-size: 1.75rem;
  }

  .screenshots-subtitle {
    font-size: 1rem;
  }

  .screenshots-container {
    padding: 0 1rem;
  }

  .carousel-wrapper {
    gap: 0.5rem;
  }

  .carousel-btn {
    width: 35px;
    height: 35px;
  }

  .carousel-btn svg {
    width: 18px;
    height: 18px;
  }

  .carousel-slide {
    min-width: 100%;
    flex: 0 0 100%;
  }

  .screenshot-image-wrapper {
    max-width: 100%;
  }

  .carousel-indicators {
    margin-top: 2rem;
    gap: 0.5rem;
  }

  .indicator {
    width: 10px;
    height: 10px;
  }

  .indicator.active {
    width: 24px;
  }

  .platforms-grid {
    gap: 0.75rem;
  }

  .platform-card {
    padding: 1.25rem 0.75rem;
  }

  .platform-icon {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
  }

  .platform-card h3 {
    font-size: 1rem;
  }

  .platform-card p {
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
  }

  .platform-card .btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 360px) {
  .platforms-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .platform-card {
    max-width: 100%;
    padding: 1.5rem 1rem;
  }
}

/* Breadcrumb Styles */
.breadcrumb-nav {
  padding: 12px 0;
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  color: var(--text-secondary, #b3b3b3);
}

.breadcrumb-item+.breadcrumb-item::before {
  content: "/";
  padding: 0 10px;
  color: #666;
  font-weight: 300;
}

.breadcrumb-item a {
  color: var(--primary-color, #e50914);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-item a:hover {
  color: #fff;
  text-decoration: underline;
}

.breadcrumb-item.active {
  color: #fff;
  font-weight: 500;
}

@media (max-width: 768px) {
  .breadcrumb {
    font-size: 0.85rem;
  }
}
/* Informative Sections Styling */
.info-section {
  padding: 8rem 0;
  border-bottom: 1px solid var(--border-color);
}

.info-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}

.info-grid.reverse {
  grid-template-columns: 1fr 1.2fr;
}

.info-grid.reverse .info-content {
  order: 2;
}

.info-grid.reverse .info-visual {
  order: 1;
}

.info-content h2 {
  font-size: 2.8rem;
  margin-bottom: 2rem;
  color: var(--text-color);
  line-height: 1.2;
  font-weight: 800;
}

.info-content p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.info-content strong {
  color: var(--primary-color);
  font-weight: 600;
}

/* Device Mockup */
.device-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.device-frame {
  width: 300px;
  height: 620px;
  background: #050505;
  border-radius: 44px;
  border: 14px solid #1a1a1a;
  position: relative;
  box-shadow: 0 50px 100px rgba(0,0,0,0.8), 0 0 40px rgba(200, 230, 47, 0.05);
  overflow: hidden;
}

.device-frame::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 30px;
  background: #1a1a1a;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  z-index: 10;
}

.device-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a0a0a 0%, #000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.device-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: #333;
}

.device-placeholder i {
  font-size: 4rem;
  color: var(--primary-color);
  opacity: 0.3;
}

.device-placeholder span {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
}

/* Pros & Cons Section */
.pros-cons-container {
  max-width: 1100px;
  margin: 0 auto;
}

.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 4rem;
}

.pc-card {
  background: rgba(255, 255, 255, 0.02);
  padding: 3.5rem 2.5rem;
  border-radius: 32px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pc-card.pros {
  background: linear-gradient(135deg, rgba(200, 230, 47, 0.03) 0%, transparent 100%);
}

.pc-card.cons {
  background: linear-gradient(135deg, rgba(255, 77, 77, 0.03) 0%, transparent 100%);
}

.pc-card h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.pc-list {
  list-style: none;
}

.pc-list li {
  padding: 1rem 0;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  color: var(--text-secondary);
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.pc-list li:last-child {
  border-bottom: none;
}

.pros i { color: var(--primary-color); transform: translateY(3px); }
.cons i { color: #ff4d4d; transform: translateY(3px); }

/* Issues and Fixes */
.fix-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.fix-card {
  padding: 2.5rem;
  background: var(--bg-card);
  border-radius: 20px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.fix-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.fix-card .icon-box {
  width: 50px;
  height: 50px;
  background: rgba(200, 230, 47, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.fix-card h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.fix-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* 4K Optimizations */
@media (min-width: 2560px) {
  .info-content h2 { font-size: 4rem; }
  .info-content p { font-size: 1.4rem; }
  .device-frame { width: 420px; height: 850px; border-radius: 60px; }
  .pc-card h3 { font-size: 2.2rem; }
  .pc-list li { font-size: 1.3rem; }
}

@media (max-width: 992px) {
  .info-grid, .info-grid.reverse {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 4rem;
  }
  .info-visual {
    margin: 0 auto;
  }
  .pros-cons-grid { grid-template-columns: 1fr; }
  .fix-grid { grid-template-columns: 1fr; }
}

/* Extra UI Components */
.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(200, 230, 47, 0.1);
  color: var(--primary-color);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.safety-card {
  background: var(--bg-card);
  padding: 4rem 2rem;
  border-radius: 32px;
  border: 1px solid var(--border-color);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.safety-stats {
  display: flex;
  gap: 3rem;
}

.stat h4 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

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

.comparison-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.bento-item {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: 24px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: var(--transition);
}

.bento-item:hover {
  background: rgba(200, 230, 47, 0.05);
  border-color: var(--primary-color);
}

.bento-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.bento-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
}
/* Install Steps Section */
.install-steps {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.install-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: rgba(21, 21, 21, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem;
    transition: var(--transition);
}

.install-step:hover {
    border-color: rgba(200, 230, 47, 0.3);
    background: rgba(21, 21, 21, 0.6);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.install-step.reverse {
    grid-template-columns: 1fr 1fr;
}

.install-step.reverse .step-content {
    order: 2;
}

.install-step.reverse .step-image-container {
    order: 1;
}

.step-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-number {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #000;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    width: fit-content;
    margin-bottom: 0.5rem;
}

.step-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
}

.step-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

.step-image-container {
    position: relative;
    width: 100%;
    min-height: 300px;
    border-radius: 12px;
    overflow: hidden;
}

.step-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.step-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 300px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(20, 20, 20, 0.9) 100%);
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: var(--transition);
}

.step-image-placeholder:hover {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(20, 20, 20, 1) 100%);
}

.step-image-placeholder i {
    font-size: 3rem;
    color: var(--text-secondary);
}

.step-image-placeholder span {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
}

.step-image-placeholder small {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Responsive Design for Install Steps */
@media (max-width: 968px) {

    .install-step,
    .install-step.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .install-step.reverse .step-content,
    .install-step.reverse .step-image-container {
        order: unset;
    }

    .step-content h3 {
        font-size: 1.5rem;
    }

    .step-image-container {
        min-height: 250px;
    }
}

@media (max-width: 640px) {
    .install-steps {
        gap: 2.5rem;
    }

    .install-step {
        padding: 2rem 1.5rem;
    }

    .step-content h3 {
        font-size: 1.3rem;
    }

    .step-image-container {
        min-height: 200px;
    }

    .step-image-placeholder {
        min-height: 200px;
    }
}/* ============================================
   COMPREHENSIVE MOBILE RESPONSIVENESS FIXES
   ============================================ */

/* Tablet (992px and below) */
@media (max-width: 992px) {

    /* Info sections */
    .info-section {
        padding: 4rem 0;
    }

    .info-grid,
    .info-grid.reverse {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .info-grid.reverse .info-content,
    .info-grid.reverse .info-visual {
        order: unset;
    }

    .info-content {
        text-align: center;
    }

    .info-content h2 {
        font-size: 2.2rem;
    }

    .info-content p {
        font-size: 1.05rem;
    }

    /* Device mockups */
    .device-container {
        max-width: 350px;
        margin: 0 auto;
    }

    .device-frame {
        width: 280px;
        height: 580px;
    }

    /* Pros and Cons */
    .pros-cons-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pc-card {
        padding: 2.5rem 2rem;
    }

    /* Fix grid */
    .fix-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Comparison bento */
    .comparison-bento {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* Install steps */
    .install-steps {
        gap: 3rem;
    }

    .install-step,
    .install-step.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem 2rem;
    }

    .install-step.reverse .step-content,
    .install-step.reverse .step-image-container {
        order: unset;
    }

    .step-content {
        text-align: center;
        align-items: center;
    }

    .step-content h3 {
        font-size: 1.6rem;
    }

    .step-content p {
        font-size: 1rem;
    }

    .step-number {
        align-self: center;
    }

    .step-image-container {
        min-height: 280px;
    }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {

    /* General spacing */
    section {
        padding: 3.5rem 0;
    }

    .info-section {
        padding: 3.5rem 0;
    }

    .container {
        padding: 0 20px;
    }

    /* Typography */
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .info-content h2 {
        font-size: 1.9rem;
        margin-bottom: 1.5rem;
    }

    .info-content p {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }

    /* Hero section adjustments */
    .hero {
        padding: 2.5rem 0 3.5rem;
    }

    .hero-wrapper {
        gap: 2.5rem;
    }

    .hero-title {
        font-size: 1.9rem;
    }

    .hero-benefits {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    /* APK Info Table */
    .apk-info-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .apk-info-table table {
        min-width: 100%;
    }

    .apk-info-table th,
    .apk-info-table td {
        padding: 0.875rem 0.75rem;
        font-size: 0.9rem;
    }

    /* Platforms grid */
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .platform-card {
        padding: 2rem 1.5rem;
    }

    .platform-icon-wrapper {
        width: 65px;
        height: 65px;
    }

    .platform-card h3 {
        font-size: 1.3rem;
    }

    .platform-card p {
        font-size: 0.9rem;
    }

    /* Device mockup */
    .device-container {
        max-width: 300px;
    }

    .device-frame {
        width: 250px;
        height: 520px;
        border-radius: 38px;
        border-width: 12px;
    }

    .device-frame::before {
        width: 80px;
        height: 25px;
    }

    /* Pros and Cons */
    .pc-card {
        padding: 2rem 1.5rem;
    }

    .pc-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .pc-list li {
        font-size: 1rem;
        padding: 0.875rem 0;
    }

    /* Fix cards */
    .fix-card {
        padding: 2rem 1.5rem;
    }

    .fix-card h4 {
        font-size: 1.2rem;
    }

    .fix-card p {
        font-size: 0.95rem;
    }

    /* Safety card */
    .safety-card {
        padding: 3rem 1.5rem;
    }

    .safety-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    /* Comparison bento */
    .comparison-bento {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .bento-item {
        padding: 1.5rem 1rem;
    }

    .bento-icon {
        font-size: 2rem;
    }

    .bento-item h4 {
        font-size: 1rem;
    }

    /* Install steps */
    .install-steps {
        gap: 2.5rem;
    }

    .install-step {
        padding: 2rem 1.5rem;
    }

    .step-content h3 {
        font-size: 1.4rem;
    }

    .step-content p {
        font-size: 0.95rem;
        text-align: left;
    }

    .step-number {
        font-size: 0.85rem;
        padding: 0.4rem 1rem;
    }

    .step-image-container {
        min-height: 240px;
    }

    .step-image-placeholder {
        min-height: 240px;
    }

    .step-image-placeholder i {
        font-size: 2.5rem;
    }

    .step-image-placeholder span {
        font-size: 1.1rem;
    }

    .step-image-placeholder small {
        font-size: 0.85rem;
    }
}

/* Small mobile (600px and below) */
@media (max-width: 600px) {

    /* Container */
    .container {
        padding: 0 16px;
    }

    /* Typography */
    .section-title {
        font-size: 1.6rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .info-content h2 {
        font-size: 1.7rem;
    }

    .info-content p {
        font-size: 0.95rem;
    }

    /* Hero */
    .hero {
        padding: 2rem 0 3rem;
    }

    .hero-title {
        font-size: 1.7rem;
    }

    .hero-benefits {
        font-size: 0.95rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .btn-hero {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    /* Platforms */
    .platforms-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .platform-card {
        max-width: 100%;
    }

    /* Device mockup */
    .device-frame {
        width: 220px;
        height: 460px;
        border-radius: 34px;
        border-width: 10px;
    }

    .device-frame::before {
        width: 70px;
        height: 22px;
    }

    /* Pros and Cons */
    .pc-card {
        padding: 1.75rem 1.25rem;
    }

    .pc-card h3 {
        font-size: 1.35rem;
    }

    .pc-list li {
        font-size: 0.95rem;
        padding: 0.75rem 0;
        gap: 1rem;
    }

    /* Fix cards */
    .fix-card {
        padding: 1.75rem 1.25rem;
    }

    .fix-card .icon-box {
        width: 45px;
        height: 45px;
        margin-bottom: 1.25rem;
    }

    .fix-card h4 {
        font-size: 1.15rem;
    }

    .fix-card p {
        font-size: 0.9rem;
    }

    /* Comparison bento */
    .comparison-bento {
        grid-template-columns: 1fr;
    }

    .bento-item {
        padding: 1.5rem;
    }

    /* Install steps */
    .install-steps {
        gap: 2rem;
    }

    .install-step {
        padding: 1.75rem 1.25rem;
    }

    .step-content h3 {
        font-size: 1.3rem;
    }

    .step-content p {
        font-size: 0.9rem;
    }

    .step-image-container {
        min-height: 220px;
    }

    .step-image-placeholder {
        min-height: 220px;
    }

    .step-image-placeholder i {
        font-size: 2.25rem;
    }

    .step-image-placeholder span {
        font-size: 1rem;
    }

    .step-image-placeholder small {
        font-size: 0.8rem;
    }

    /* Safety card */
    .safety-card {
        padding: 2.5rem 1.25rem;
    }

    .safety-card svg {
        width: 150px !important;
    }

    .stat h4 {
        font-size: 1.5rem;
    }

    .stat span {
        font-size: 0.9rem;
    }
}

/* Extra small mobile (480px and below) */
@media (max-width: 480px) {

    /* General spacing */
    section {
        padding: 3rem 0;
    }

    .info-section {
        padding: 3rem 0;
    }

    /* Typography */
    .section-title {
        font-size: 1.5rem;
    }

    .info-content h2 {
        font-size: 1.6rem;
    }

    .info-content p {
        font-size: 0.9rem;
    }

    /* Hero */
    .hero-title {
        font-size: 1.6rem;
    }

    .logo-text {
        font-size: 1.4rem;
    }

    .logo-icon {
        font-size: 1.4rem;
    }

    /* Device mockup */
    .device-frame {
        width: 200px;
        height: 420px;
        border-radius: 30px;
        border-width: 8px;
    }

    .device-frame::before {
        width: 60px;
        height: 20px;
    }

    /* Pros and Cons */
    .pc-card h3 {
        font-size: 1.25rem;
    }

    .pc-list li {
        font-size: 0.9rem;
    }

    /* Install steps */
    .step-content h3 {
        font-size: 1.2rem;
    }

    .step-content p {
        font-size: 0.875rem;
    }

    .step-number {
        font-size: 0.8rem;
        padding: 0.35rem 0.875rem;
    }

    .step-image-container {
        min-height: 200px;
    }

    .step-image-placeholder {
        min-height: 200px;
    }

    .step-image-placeholder i {
        font-size: 2rem;
    }

    .step-image-placeholder span {
        font-size: 0.95rem;
    }

    .step-image-placeholder small {
        font-size: 0.75rem;
    }

    /* Buttons */
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    .btn-hero {
        padding: 0.875rem 1.75rem;
    }
}

/* Very small devices (360px and below) */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .info-content h2 {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .device-frame {
        width: 180px;
        height: 380px;
    }

    .install-step {
        padding: 1.5rem 1rem;
    }

    .step-content h3 {
        font-size: 1.15rem;
    }

    .step-image-container {
        min-height: 180px;
    }

    .step-image-placeholder {
        min-height: 180px;
    }
}

/* Landscape orientation fixes */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }

    .device-frame {
        width: 200px;
        height: 400px;
    }

    .step-image-container {
        min-height: 200px;
    }
}

/* Prevent horizontal scroll */
html,
body {
    overflow-x: hidden;
    max-width: 100%;
}

* {
    max-width: 100%;
}

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

/* Ensure all grids are responsive */
.info-grid,
.pros-cons-grid,
.fix-grid,
.comparison-bento,
.install-steps {
    width: 100%;
    max-width: 100%;
}
/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: #000;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(200, 230, 47, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.8);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.scroll-to-top:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 30px rgba(200, 230, 47, 0.6);
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.scroll-to-top:active {
  transform: translateY(-2px) scale(1.05);
}

.scroll-to-top svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.5;
  transition: var(--transition);
}

.scroll-to-top:hover svg {
  transform: translateY(-2px);
}

/* Pulse animation when button appears */
@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(200, 230, 47, 0.4);
  }
  50% {
    box-shadow: 0 4px 30px rgba(200, 230, 47, 0.6);
  }
}

.scroll-to-top.visible {
  animation: pulse 2s ease-in-out infinite;
}

.scroll-to-top:hover {
  animation: none;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }

  .scroll-to-top svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .scroll-to-top {
    bottom: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
  }

  .scroll-to-top svg {
    width: 18px;
    height: 18px;
  }
}

/* Ensure button doesn't interfere with footer */
@media (max-height: 600px) {
  .scroll-to-top {
    bottom: 15px;
    right: 15px;
  }
}

/* ============================================
   ENHANCED CAROUSEL ANIMATIONS
   ============================================ */

/* Smaller, more elegant screenshot images */
.screenshot-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 19.5;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  min-width: calc(25% - 1.125rem);
  flex: 0 0 calc(25% - 1.125rem);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Floating animation for carousel slides */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

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

.carousel-slide:nth-child(2) {
  animation-delay: 0.5s;
}

.carousel-slide:nth-child(3) {
  animation-delay: 1s;
}

.carousel-slide:nth-child(4) {
  animation-delay: 1.5s;
}

.carousel-slide:nth-child(5) {
  animation-delay: 2s;
}

/* Enhanced hover effects */
.carousel-slide:hover {
  animation-play-state: paused;
}

.carousel-slide:hover .screenshot-image-wrapper {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 
              0 0 40px rgba(200, 230, 47, 0.3);
}

/* Glow effect on hover */
.screenshot-image-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(200, 230, 47, 0.2) 0%, 
    transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.carousel-slide:hover .screenshot-image-wrapper::after {
  opacity: 1;
}

/* Smooth image transitions */
.screenshot-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide:hover .screenshot-image {
  transform: scale(1.08);
}

/* Label animations */
.screenshot-label {
  margin-top: 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.carousel-slide:hover .screenshot-label {
  color: var(--primary-color);
  opacity: 1;
  transform: translateY(-3px);
}

/* Carousel track smooth transitions */
.carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced button styles */
.carousel-btn {
  background: rgba(200, 230, 47, 0.1);
  border: 1px solid rgba(200, 230, 47, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(200, 230, 47, 0.5);
}

.carousel-btn:hover svg {
  color: #000;
}

/* Indicator animations */
.carousel-indicators {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2.5rem;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.indicator:hover {
  background: rgba(200, 230, 47, 0.5);
  transform: scale(1.2);
}

.indicator.active {
  background: var(--primary-color);
  width: 30px;
  border-radius: 5px;
  box-shadow: 0 0 15px rgba(200, 230, 47, 0.6);
}

/* Progress bar animation for active indicator */
@keyframes progress {
  from {
    width: 10px;
  }
  to {
    width: 30px;
  }
}

.indicator.active {
  animation: progress 0.3s ease-out;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .carousel-slide {
    min-width: calc(33.333% - 1rem);
    flex: 0 0 calc(33.333% - 1rem);
  }
}

@media (max-width: 768px) {
  .carousel-slide {
    min-width: calc(50% - 0.75rem);
    flex: 0 0 calc(50% - 0.75rem);
  }
  
  .carousel-track {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .carousel-slide {
    min-width: 100%;
    flex: 0 0 100%;
  }
  
  .carousel-track {
    gap: 0.5rem;
  }
  
  .screenshot-image-wrapper {
    border-radius: 16px;
  }
}

/* Pause animation on reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .carousel-slide {
    animation: none;
  }
  
  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* ============================================
   FIXED IMAGE RATIO FOR SLIDER
   ============================================ */

/* Override previous aspect ratio with better proportions */
.screenshot-image-wrapper {
  aspect-ratio: 9 / 16 !important; /* Standard mobile aspect ratio */
  max-width: 280px; /* Limit maximum width */
  margin: 0 auto; /* Center the image */
}

/* Ensure images maintain proper sizing on all screens */
.carousel-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

/* Better responsive sizing */
@media (max-width: 1400px) {
  .screenshot-image-wrapper {
    max-width: 250px;
  }
}

@media (max-width: 1200px) {
  .screenshot-image-wrapper {
    max-width: 220px;
  }
}

@media (max-width: 992px) {
  .screenshot-image-wrapper {
    max-width: 200px;
  }
}

@media (max-width: 768px) {
  .screenshot-image-wrapper {
    max-width: 240px;
  }
}

@media (max-width: 480px) {
  .screenshot-image-wrapper {
    max-width: 280px;
    aspect-ratio: 9 / 16 !important;
  }
}

/* Ensure consistent image display */
.screenshot-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
