/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #e50914;
  --primary-dark: #9efa34e7;
  --secondary-color: #221f1f;
  --text-color: #ffffff;
  --text-secondary: #b3b3b3;
  --bg-dark: #000000;
  --bg-card: #1a1a1a;
  --border-color: #333333;
  --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;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 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: 8px;
  color: #9cfa34;
  text-decoration: none;
  font-weight: 700;
  font-size: 28px;
}

.logo:hover {
  color: var(--primary-dark);
  transform: scale(1.05);
}

.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(229, 9, 20, 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: 25px;
  height: 3px;
  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(229, 9, 20, 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: #00ff88;
  filter: drop-shadow(0 0 10px rgba(0, 255, 136, 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: #00ff88;
  background: linear-gradient(135deg, #00ff88 0%, #00cc6a 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, #00ff88 0%, #00cc6a 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(0, 255, 136, 0.3);
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(0, 255, 136, 0.4);
  background: linear-gradient(135deg, #00cc6a 0%, #00ff88 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: #00ff88;
  transition: var(--transition);
}

.platform-link:hover {
  color: #00ff88;
}

.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(0, 255, 136, 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: 500px;
  position: relative;
  overflow: hidden;
}

.tv-content {
  position: relative;
  z-index: 1;
}

.featured-movie {
  margin-bottom: 2rem;
}

.movie-poster {
  width: 100%;
  height: 200px;
  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, #00ff88 0%, #00cc6a 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(0, 255, 136, 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: #00ff88;
  color: #00ff88;
}

.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: var(--text-color);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(229, 9, 20, 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: var(--text-color);
}

/* 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(229, 9, 20, 0.2);
  background-color: rgba(229, 9, 20, 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(5, 1fr);
  gap: 1rem;
  justify-items: center;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.platform-card {
  width: 100%;
  max-width: 280px;
  justify-self: center;
  background-color: var(--bg-card);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.platform-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(229, 9, 20, 0.2);
}

.platform-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.platform-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-color);
}

.platform-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

/* 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(0, 255, 136, 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%,
    #00ff88 50%,
    transparent 100%
  );
  opacity: 0;
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 255, 136, 0.3);
  box-shadow: 0 20px 40px rgba(0, 255, 136, 0.15),
    0 0 0 1px rgba(0, 255, 136, 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, #00ff88 0%, #00cc6a 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(0, 255, 136, 0.3);
  transition: var(--transition);
}

.step-card:hover .step-number {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 30px rgba(0, 255, 136, 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(0, 255, 136, 0.1) 0%,
    rgba(0, 255, 136, 0.05) 100%
  );
  border: 1px solid rgba(0, 255, 136, 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(0, 255, 136, 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: #00ff88;
  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(0, 255, 136, 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(0, 255, 136, 0.1) 0%,
    rgba(0, 255, 136, 0.05) 100%
  );
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 50px;
  color: #00ff88;
  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%,
    #00ff88 50%,
    transparent 100%
  );
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 255, 136, 0.3);
  box-shadow: 0 20px 40px rgba(0, 255, 136, 0.15),
    0 0 0 1px rgba(0, 255, 136, 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(0, 255, 136, 0.3));
  transition: var(--transition);
}

.feature-glow {
  position: absolute;
  width: 80px;
  height: 80px;
  background: radial-gradient(
    circle,
    rgba(0, 255, 136, 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(0, 255, 136, 0.1) 0%,
    rgba(0, 255, 136, 0.05) 100%
  );
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 20px;
  color: #00ff88;
  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(229, 9, 20, 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(229, 9, 20, 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(229, 9, 20, 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(229, 9, 20, 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(229, 9, 20, 0.1);
  text-align: center;
  color: var(--text-color);
  font-weight: 600;
}

.comparison-table .check-mark {
  color: #00ff88;
  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(229, 9, 20, 0.2);
  background: linear-gradient(
    135deg,
    rgba(229, 9, 20, 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(0, 255, 136, 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(0, 255, 136, 0.3);
  box-shadow: 0 4px 20px rgba(0, 255, 136, 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: #00ff88;
}

.faq-question:focus {
  outline: none;
  color: #00ff88;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: #00ff88;
  transition: var(--transition);
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 255, 136, 0.1);
  border-radius: 50%;
  line-height: 1;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: rgba(0, 255, 136, 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(0, 255, 136, 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(0, 255, 136, 0.1) 0%,
    rgba(0, 255, 136, 0.05) 100%
  );
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 50px;
  color: #00ff88;
  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(0, 255, 136, 0.1) 0%,
    rgba(0, 255, 136, 0.05) 100%
  );
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00ff88;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
  z-index: 2;
}

.carousel-btn:hover {
  background: linear-gradient(
    135deg,
    rgba(0, 255, 136, 0.2) 0%,
    rgba(0, 255, 136, 0.1) 100%
  );
  border-color: rgba(0, 255, 136, 0.4);
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 255, 136, 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(0, 255, 136, 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(0, 255, 136, 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(0, 255, 136, 0.2),
    0 0 0 2px rgba(0, 255, 136, 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(0, 255, 136, 0.4);
  transform: scale(1.2);
}

.indicator.active {
  background: #00ff88;
  width: 32px;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(0, 255, 136, 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;
}

/* Home Screen */
.screenshot-home {
  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(0, 255, 136, 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(0, 255, 136, 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, #00ff88 0%, #00cc6a 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, #00ff88 0%, #00cc6a 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(229, 9, 20, 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(229, 9, 20, 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;
  }
}
