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

:root {
  --roku-purple: #662D91;
  --roku-purple-hover: #7b3ba8;
  --dark-bg: #090214;
  --panel-bg: #140d24;
  --text-white: #FFFFFF;
  --text-gray: #A29BB0;
  --accent-pink: #FF007F;
  --sans-font: 'Outfit', sans-serif;
  --inter-font: 'Inter', sans-serif;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px; /* Offset for sticky header + announcement bar */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--sans-font);
  background-color: var(--dark-bg);
  color: var(--text-white);
  line-height: 1.5;
  overflow-x: hidden;
}

/* Announcement Bar */
.announcement-bar {
  background: var(--roku-purple);
  color: white;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1001;
}

.announcement-bar a {
  color: #adfa1d;
  text-decoration: none;
  margin-left: 5px;
  font-weight: 700;
}

.announcement-bar a:hover {
  text-decoration: underline;
}

/* Header & Nav */
header {
  height: 80px;
  background: rgba(9, 2, 20, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(102, 45, 145, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo {
  font-size: 28px;
  font-weight: 800;
  text-decoration: none;
  color: white;
  letter-spacing: -1px;
}

.logo span {
  color: var(--roku-purple);
  margin-left: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-item a {
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition);
  padding: 8px 0;
}

.nav-item a:hover {
  color: var(--text-gray);
}

/* Dropdown Menu */
.nav-item.dropdown {
  position: relative;
}

.nav-arrow {
  font-size: 11px;
  margin-left: 4px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--panel-bg);
  border: 1px solid rgba(102, 45, 145, 0.3);
  border-radius: 8px;
  padding: 10px 0;
  min-width: 200px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
}

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

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

/* Mega Dropdown Panel styles */
.dropdown-menu.mega-dropdown {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  max-width: 100vw;
  background: rgba(14, 8, 28, 0.98);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: none;
  border-bottom: 2px solid var(--roku-purple);
  border-radius: 0;
  padding: 30px 8%;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
  z-index: 999;
}

.mega-dropdown-container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.mega-dropdown-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  padding-right: 30px;
}

.mega-cat-btn {
  padding: 14px 20px;
  border-radius: 8px;
  font-weight: 700;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
  font-size: 16px;
  border: 1px solid transparent;
}

.mega-cat-btn:hover {
  background: rgba(255, 255, 255, 0.05);
}

.mega-cat-btn.active {
  background: var(--roku-purple);
  border-color: var(--roku-purple);
  box-shadow: 0 5px 15px rgba(102, 45, 145, 0.3);
}

.mega-dropdown-right {
  max-height: 50vh;
  overflow-y: auto;
  padding-right: 10px;
}

.mega-tab-content {
  display: none;
}

.mega-tab-content.active {
  display: block;
}

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

.mega-product-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
  aspect-ratio: 1/1.2;
}

.mega-product-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--roku-purple);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.mega-product-card img {
  max-height: 70px;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 10px;
  transition: var(--transition);
}

.mega-product-card:hover img {
  transform: scale(1.08);
}

.mega-product-card h5 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 5px;
  color: white;
}

.mega-product-card .mega-price {
  font-size: 14px;
  font-weight: 800;
  color: #adfa1d;
  margin-bottom: 10px;
}

.btn-mega-buy {
  background: var(--roku-purple);
  color: white;
  border: none;
  padding: 6px 14px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  transition: var(--transition);
}

.btn-mega-buy:hover {
  background: var(--roku-purple-hover);
}

@media (max-width: 768px) {
  .dropdown-menu.mega-dropdown {
    position: static;
    width: 100%;
    max-height: none;
    padding: 15px;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.03);
  }
  .mega-dropdown-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .mega-dropdown-left {
    border-right: none;
    padding-right: 0;
  }
  .mega-dropdown-right {
    max-height: none;
  }
}

/* Header Right */
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-phone-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  text-decoration: none;
  font-weight: 700;
  border: 2px solid var(--roku-purple);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 14px;
  transition: var(--transition);
}

.nav-phone-btn:hover {
  background: var(--roku-purple);
  box-shadow: 0 0 15px rgba(102, 45, 145, 0.4);
}

.nav-icon-link {
  color: white;
  font-size: 20px;
  text-decoration: none;
  transition: var(--transition);
}

.nav-icon-link:hover {
  color: var(--roku-purple);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 22px;
  cursor: pointer;
}

/* Mega Menu Container */
.mega-menu-container {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  max-height: calc(100vh - var(--header-height));
  background: rgba(14, 8, 28, 0.98);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-bottom: 2px solid var(--roku-purple);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
  z-index: 999;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 40px 8%;
}

.mega-menu-container.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu-close-btn {
  position: absolute;
  top: 25px;
  right: 25px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10;
}

.mega-menu-close-btn:hover {
  background: var(--accent-pink);
  color: white;
  border-color: var(--accent-pink);
  transform: rotate(90deg);
}

.mega-menu-content {
  max-width: 1200px;
  margin: 0 auto;
}

/* Hero Roku TV Section */
.hero-roku-tv {
  background: linear-gradient(180deg, #1e093c 0%, #090214 100%);
  position: relative;
  padding: 80px 5% 50px;
  text-align: center;
  overflow: hidden;
}

.skyline-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background-image: url('https://images.unsplash.com/photo-1519501025264-65ba15a82390?q=80&w=1000&auto=format&fit=crop'); /* City Skyline silhouette alternative */
  background-size: cover;
  background-position: bottom center;
  opacity: 0.05;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-tv-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.hero-text-block {
  margin-bottom: 40px;
}

.hero-text-block h1 {
  font-size: 54px;
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing: -1.5px;
}

.hero-text-block p {
  font-size: 22px;
  color: var(--text-gray);
  max-width: 800px;
  margin: 0 auto;
}

/* TV Mockup Layout */
.tv-mockup-wrapper {
  position: relative;
  width: 100%;
  max-width: 880px;
  margin: 0 auto 50px;
}

/* Editors Choice Badge */
.editors-choice-badge {
  position: absolute;
  top: 35%;
  left: -60px;
  background: #E50914; /* Red badge */
  color: white;
  width: 90px;
  padding: 15px 5px;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  font-family: var(--inter-font);
  z-index: 20;
}

.editors-choice-badge .badge-title {
  display: block;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.editors-choice-badge .badge-sub {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 5px;
  margin-bottom: 5px;
}

.editors-choice-badge .badge-main {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* TV Frame */
.tv-frame {
  background: #111;
  border: 10px solid #1a1a1a;
  border-radius: 8px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.8);
  aspect-ratio: 16/9;
  width: 100%;
  position: relative;
}

.tv-screen {
  width: 100%;
  height: 100%;
  background: #000;
  overflow: hidden;
  position: relative;
}

.tv-stand {
  width: 160px;
  height: 12px;
  background: #1f1f1f;
  margin: 0 auto;
  border-radius: 0 0 8px 8px;
  position: relative;
  top: 2px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

/* Roku UI Inside Screen Replica */
.roku-ui-layout {
  display: grid;
  grid-template-columns: 180px 1fr;
  height: 100%;
  font-family: var(--inter-font);
  text-align: left;
}

/* Sidebar */
.roku-ui-sidebar {
  background: #2b1154;
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.roku-ui-logo {
  color: white;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
}

.roku-ui-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.roku-ui-menu .menu-item {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.roku-ui-menu .menu-item.active,
.roku-ui-menu .menu-item:hover {
  background: white;
  color: #2b1154;
}

/* Content Area */
.roku-ui-content {
  background: linear-gradient(135deg, #1b0933 0%, #0d041a 100%);
  padding: 15px 25px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.roku-ui-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.recommended-lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}

.clock-lbl {
  font-size: 11px;
  color: white;
  font-weight: 700;
}

.roku-ui-banner-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 15px;
}

.banner-card {
  height: 65px;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.banner-card.news {
  background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1504711434969-e33886168f5c?q=80&w=300');
}

.banner-card.movie {
  background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1536440136628-849c177e76a1?q=80&w=300');
}

.banner-card.show {
  background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1556910103-1c02745aae4d?q=80&w=300');
}

.banner-text {
  position: absolute;
  bottom: 6px;
  left: 8px;
  font-size: 9px;
  font-weight: 800;
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.apps-lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  margin-bottom: 8px;
}

.roku-ui-apps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.app-tile {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  aspect-ratio: 16/10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6px;
  gap: 3px;
  transition: var(--transition);
}

.app-tile i {
  font-size: 18px;
}

.app-tile span {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.app-tile:hover {
  background: white;
  border-color: white;
  color: black;
}

.app-tile.netflix i { color: #E50914; }
.app-tile.disney { background: #01147C; color: white; }
.app-tile.disney .disney-txt { font-family: sans-serif; font-weight: 900; font-size: 9px; }
.app-tile.apple { background: #000; color: white; }
.app-tile.channel { background: #3c095c; }
.ch-purple { color: #8625D9; font-weight: 900; }
.ch-white { color: white; }
.app-tile.howdy { background: #FF007F; }
.app-tile.howdy .howdy-txt { font-weight: 800; font-size: 9px; }
.app-tile.paramount { background: #0057B8; }
.app-tile.paramount .para-txt { font-weight: 800; font-size: 8px; }
.app-tile.espn { background: #CC0000; }
.app-tile.espn .espn-txt { font-weight: 900; font-size: 10px; }
.app-tile.prime { background: #151A21; }
.app-tile.prime .prime-txt { color: #00A8E1; font-size: 8px; font-style: italic; }

/* Hero Action Footer */
.hero-action-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
}

.btn-cookie-policy {
  background: white;
  color: black;
  border: none;
  border-radius: 4px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-cookie-policy:hover {
  background: #e6e6e6;
}

.action-footer-buttons {
  display: flex;
  gap: 15px;
}

.btn-hero-support {
  background: var(--roku-purple);
  color: white;
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}

.btn-hero-support:hover {
  background: var(--roku-purple-hover);
}

.btn-hero-shop {
  background: #3e266a;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}

.btn-hero-shop:hover {
  background: #4f3385;
}

/* See Why Section */
.see-why-section {
  padding: 60px 8%;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: -1px;
}

.section-header p {
  color: var(--text-gray);
  font-size: 18px;
}

/* Search and Products Section */
.products-section {
  padding: 80px 8%;
}

/* Category Tabs */
.category-tabs-container {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.tab-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(102, 45, 145, 0.2);
  color: white;
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--sans-font);
  transition: var(--transition);
}

.tab-btn:hover, .tab-btn.active {
  background: var(--roku-purple);
  border-color: var(--roku-purple);
  box-shadow: 0 5px 15px rgba(102, 45, 145, 0.3);
}

.search-container {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.search-wrapper {
  width: 100%;
  max-width: 500px;
}

.search-input {
  width: 100%;
  padding: 14px 22px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(102, 45, 145, 0.3);
  color: white;
  font-size: 16px;
  outline: none;
  font-family: var(--sans-font);
  transition: var(--transition);
}

.search-input:focus {
  border-color: var(--roku-purple);
  box-shadow: 0 0 15px rgba(102, 45, 145, 0.3);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.product-card {
  background: var(--panel-bg);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: var(--roku-purple);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--roku-purple);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 10px;
}

.product-img-box {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  overflow: hidden;
}

.product-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: var(--transition);
}

.product-card:hover .product-image {
  transform: scale(1.08);
}

.product-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.product-card p {
  color: var(--text-gray);
  font-size: 14px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-footer .price {
  font-size: 22px;
  font-weight: 800;
}

.btn-buy {
  background: var(--roku-purple);
  color: white;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}

.btn-buy:hover {
  background: var(--roku-purple-hover);
}

/* Features Split Section */
.features-split-section {
  background: #110822;
  padding: 80px 8%;
}

.features-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.features-content h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
}

.features-content p {
  font-size: 18px;
  color: var(--text-gray);
  margin-bottom: 30px;
}

.features-bullet-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}

.bullet-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
}

.bullet-item i {
  color: #adfa1d;
}

.btn-cta {
  background: var(--roku-purple);
  color: white;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 700;
  display: inline-block;
  transition: var(--transition);
}

.btn-cta:hover {
  background: var(--roku-purple-hover);
  box-shadow: 0 8px 24px rgba(102, 45, 145, 0.4);
}

.features-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.features-visual img {
  width: 100%;
  max-width: 450px;
  border-radius: 16px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Support Desk Portal */
.support-portal {
  padding: 80px 8%;
  background: var(--dark-bg);
}

.support-split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-card-premium {
  background: linear-gradient(135deg, #1b0c30 0%, #2f1253 100%);
  border: 1px solid rgba(102, 45, 145, 0.3);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  margin-bottom: 40px;
}

.card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #adfa1d;
  color: black;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
}

.phone-large-icon {
  font-size: 54px;
  color: #FF007F;
  margin-bottom: 20px;
}

.contact-card-premium h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.contact-card-premium p {
  color: var(--text-gray);
  margin-bottom: 25px;
}

.phone-link-main {
  font-size: 36px;
  font-weight: 900;
  color: white;
  text-decoration: none;
  display: block;
  margin-bottom: 15px;
  transition: var(--transition);
}

.phone-link-main:hover {
  color: #adfa1d;
}

.active-status {
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #adfa1d;
}

.dot-green {
  width: 8px;
  height: 8px;
  background: #adfa1d;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px #adfa1d;
}

/* Accordion FAQ */
.faq-accordion-box h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.faq-accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 0;
}

.faq-accordion-header {
  width: 100%;
  background: none;
  border: none;
  color: white;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  outline: none;
  font-family: var(--sans-font);
}

.faq-accordion-header:hover {
  color: var(--roku-purple-hover);
}

.faq-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  color: var(--text-gray);
  font-size: 14px;
}

.faq-accordion-item.active .faq-accordion-body {
  max-height: 200px;
  padding-top: 10px;
}

.faq-accordion-item.active .faq-accordion-header i {
  transform: rotate(45deg);
  color: #FF007F;
}

/* Callback Form Box */
.callback-form-box {
  background: var(--panel-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 40px;
}

.callback-form-box h3 {
  font-size: 26px;
  margin-bottom: 8px;
}

.callback-form-box p {
  color: var(--text-gray);
  margin-bottom: 30px;
  font-size: 15px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group, .form-group-half {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-gray);
}

.form-element {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 18px;
  border-radius: 8px;
  color: white;
  outline: none;
  font-family: var(--sans-font);
  font-size: 15px;
  transition: var(--transition);
}

.form-element:focus {
  border-color: var(--roku-purple);
  background: rgba(255, 255, 255, 0.06);
}

.btn-submit-form {
  width: 100%;
  background: var(--roku-purple);
  color: white;
  border: none;
  padding: 15px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--sans-font);
  transition: var(--transition);
}

.btn-submit-form:hover {
  background: var(--roku-purple-hover);
  box-shadow: 0 8px 20px rgba(102, 45, 145, 0.3);
}

/* Explore Products (4 Circles) */
.explore-products-section {
  text-align: center;
  padding: 60px 8%;
  background: var(--dark-bg);
}

.explore-products-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
}

.explore-products-grid {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.explore-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: white;
  transition: var(--transition);
}

.explore-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.explore-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.explore-item:hover .explore-circle {
  transform: translateY(-5px);
  background: var(--roku-purple);
  border-color: var(--roku-purple);
  box-shadow: 0 8px 20px rgba(102, 45, 145, 0.4);
}

.explore-item span {
  font-size: 15px;
  font-weight: 600;
}

/* Promo Card Banner */
.promo-card-section {
  padding: 40px 8%;
  background: var(--dark-bg);
}

.promo-card {
  position: relative;
  background: linear-gradient(180deg, #1f073d 0%, #100320 100%);
  border-radius: 20px;
  border: 1px solid rgba(102, 45, 145, 0.3);
  padding: 50px 4%;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.promo-skyline-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background-image: url('https://images.unsplash.com/photo-1519501025264-65ba15a82390?q=80&w=1000&auto=format&fit=crop');
  background-size: cover;
  background-position: bottom center;
  opacity: 0.15;
  mix-blend-mode: screen;
  pointer-events: none;
}

.promo-content {
  position: relative;
  z-index: 10;
}

.promo-content h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 40px;
}

.promo-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.promo-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.promo-icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #adfa1d;
}

.promo-feature h4 {
  font-size: 17px;
  font-weight: 700;
}

.promo-feature p {
  font-size: 14px;
  color: var(--text-gray);
  max-width: 200px;
}

.btn-promo-learn {
  display: inline-block;
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
  transition: var(--transition);
}

.btn-promo-learn:hover {
  background: white;
  color: black;
}

/* Stream What You Love Channels Grid */
.stream-what-you-love-section {
  text-align: center;
  padding: 80px 8%;
  background: var(--dark-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stream-what-you-love-section .subtitle {
  color: var(--text-gray);
  font-size: 18px;
  margin-bottom: 45px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.channels-grid-custom {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto 40px;
}

.channel-card-tile {
  background: #150e26;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  aspect-ratio: 16/10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  color: white;
  transition: var(--transition);
  cursor: pointer;
}

.channel-card-tile:hover {
  transform: translateY(-4px);
  background: white;
  color: black;
  border-color: white;
  box-shadow: 0 10px 25px rgba(255,255,255,0.1);
}

.channel-card-tile.netflix i { color: #E50914; font-size: 24px; }
.channel-card-tile.youtube i { color: #FF0000; font-size: 24px; }
.channel-card-tile.disney { background: #01147C; }
.channel-card-tile.tubi { background: #FF4A00; }
.channel-card-tile.tubi .tubi-txt { font-weight: 900; }
.channel-card-tile.max { background: #000; }
.channel-card-tile.max .max-txt { color: #00A8E1; font-style: italic; font-weight: 900; }
.channel-card-tile.peacock { background: #000; }
.channel-card-tile.hulu { background: #1CE783; color: black; }
.channel-card-tile.roku-ch { background: #380854; }
.channel-card-tile.roku-ch .ch-p { color: #8625D9; }
.channel-card-tile.paramount { background: #0057B8; }
.channel-card-tile.spectrum { background: #0076C0; }

.inner-channels-tabs {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
}

.inner-channels-tabs span {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-gray);
  cursor: pointer;
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}

.inner-channels-tabs span.active, .inner-channels-tabs span:hover {
  color: white;
  border-bottom-color: var(--roku-purple);
}

.inner-tabs-desc {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 30px;
}

.btn-see-whats-on {
  display: inline-block;
  background: white;
  color: black;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
  transition: var(--transition);
}

.btn-see-whats-on:hover {
  background: #e6e6e6;
  box-shadow: 0 5px 15px rgba(255,255,255,0.2);
}

/* The Roku Channel Intro Grid */
.roku-channel-intro-section {
  padding: 80px 8%;
  background: #0b0314;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.roku-channel-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto 60px;
}

.logo-box-ch {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 20px;
}

.logo-box-ch .ch-purple {
  color: #8625D9;
}

.channel-intro-left h3 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.2;
}

.channel-intro-left p {
  color: var(--text-gray);
  font-size: 16px;
  max-width: 450px;
}

.collage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.collage-item {
  height: 200px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.collage-item:hover {
  transform: scale(1.05);
}

/* Show / Sub Carousels */
.carousel-list-container {
  max-width: 1100px;
  margin: 0 auto 50px;
}

.carousel-list-container h4 {
  font-size: 20px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.see-all-link {
  color: var(--roku-purple);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.see-all-link:hover {
  text-decoration: underline;
}

.carousel-track-horizontal {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 15px;
}

.carousel-track-horizontal::-webkit-scrollbar {
  height: 6px;
}

.carousel-track-horizontal::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
}

.show-card {
  min-width: 180px;
  flex: 0 0 180px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.show-img-placeholder {
  height: 110px;
  border-radius: 6px;
  background: #190e2a;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  color: white;
  text-align: center;
  padding: 10px;
  background-size: cover;
  background-position: center;
}

.show-img-placeholder.news { background-image: linear-gradient(rgba(102,45,145,0.5), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1504711434969-e33886168f5c?q=80&w=200'); }
.show-img-placeholder.doc { background-image: linear-gradient(rgba(102,45,145,0.5), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1585829365295-ab7cd400c167?q=80&w=200'); }
.show-img-placeholder.comedy { background-image: linear-gradient(rgba(102,45,145,0.5), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1514306191717-452ec28c7814?q=80&w=200'); }
.show-img-placeholder.drama { background-image: linear-gradient(rgba(102,45,145,0.5), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1485846234645-a62644f84728?q=80&w=200'); }
.show-img-placeholder.family { background-image: linear-gradient(rgba(102,45,145,0.5), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1511895426328-dc8714191300?q=80&w=200'); }
.show-img-placeholder.sports { background-image: linear-gradient(rgba(102,45,145,0.5), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1508098682722-e99c43a406b2?q=80&w=200'); }

.show-card h5 {
  font-size: 14px;
  font-weight: 600;
}

.sub-card {
  min-width: 150px;
  flex: 0 0 150px;
  height: 90px;
  border-radius: 6px;
  background: #190e2a;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 15px 10px 10px;
  font-family: var(--inter-font);
  transition: var(--transition);
  cursor: pointer;
}

.sub-card:hover {
  transform: translateY(-3px);
  border-color: var(--roku-purple);
  box-shadow: 0 5px 15px rgba(102,45,145,0.3);
}

.sub-card.howdy { background: #FF007F; }
.sub-card.apple { background: #000; }
.sub-card.peacock { background: #111; }
.sub-card.starz { background: #000; }
.sub-card.paramount { background: #0057B8; }
.sub-card.hbomax { background: #000; }

.sub-logo {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.sub-footer {
  font-size: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
}

/* Teaser Row */
.teaser-row-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 8%;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.teaser-column {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.teaser-column h4 {
  font-size: 18px;
  font-weight: 700;
}

.teaser-column p {
  font-size: 14px;
  color: var(--text-gray);
  max-width: 250px;
}

.teaser-column a {
  color: var(--roku-purple);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}

.teaser-column a:hover {
  text-decoration: underline;
}

.border-left-right {
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

/* Stay Updated Purple Bar */
.stay-updated-purple-bar {
  background: var(--roku-purple);
  padding: 30px 8%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stay-updated-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 20px;
}

.stay-updated-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.stay-updated-left label {
  font-size: 16px;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
}

.newsletter-form-inline {
  display: flex;
  background: white;
  border-radius: 4px;
  overflow: hidden;
  width: 280px;
}

.newsletter-form-inline input {
  border: none;
  outline: none;
  padding: 10px 15px;
  font-size: 14px;
  flex-grow: 1;
}

.newsletter-form-inline button {
  border: none;
  background: #adfa1d;
  color: black;
  padding: 0 15px;
  cursor: pointer;
  font-size: 14px;
  transition: var(--transition);
}

.newsletter-form-inline button:hover {
  background: #9bd419;
}

.stay-updated-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

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

.social-links-footer a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

.social-links-footer a:hover {
  background: white;
  color: var(--roku-purple);
}

.roku-blog-logo-btn {
  font-weight: 800;
  font-size: 18px;
  color: white;
  cursor: pointer;
}

.roku-blog-logo-btn span {
  color: #adfa1d;
  margin-left: 2px;
}

/* Footer */
footer {
  background: #04010b;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 8% 40px;
}

.footer-columns-row {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.footer-column.brand p {
  color: var(--text-gray);
  margin-top: 15px;
  margin-bottom: 25px;
  max-width: 320px;
}

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

.social-circles a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
}

.social-circles a:hover {
  background: var(--roku-purple);
  color: white;
}

.footer-column h4 {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

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

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

.footer-column ul li a:hover {
  color: white;
}

.footer-legal-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.legal-left p {
  font-size: 13px;
  color: var(--text-gray);
  max-width: 800px;
}

.legal-right {
  display: flex;
  gap: 15px;
  white-space: nowrap;
}

.legal-right a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 13px;
  transition: var(--transition);
}

.legal-right a:hover {
  color: white;
}

/* Responsiveness */
@media (max-width: 1024px) {
  .editors-choice-badge {
    display: none;
  }
  .features-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .features-bullet-list {
    align-items: center;
  }
  .features-visual img {
    max-width: 100%;
  }
  .support-split-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: var(--dark-bg);
    flex-direction: column;
    padding: 50px 0;
    gap: 30px;
    transition: var(--transition);
    border-top: 1px solid rgba(102, 45, 145, 0.2);
    display: flex;
    align-items: center;
  }
  .main-nav.active {
    left: 0;
  }
  .nav-item.dropdown.clicked .dropdown-menu {
    opacity: 1;
    visibility: visible;
    display: block;
    position: static;
    box-shadow: none;
    transform: none;
    background: rgba(255, 255, 255, 0.05);
    margin-top: 10px;
    width: 100%;
    text-align: center;
  }
  .header-right .nav-phone-btn {
    display: none;
  }
  .hero-text-block h1 {
    font-size: 38px;
  }
  .hero-text-block p {
    font-size: 18px;
  }
  .footer-columns-row {
    grid-template-columns: 1fr;
  }
  .footer-legal-bar {
    flex-direction: column;
    text-align: center;
  }
}
