/* Global theme tokens and base styling for the streaming storefront. */
:root {
  --bg: #1a1a1a;
  --surface: #232323;
  --surface-2: #2c2c2c;
  --text: #fff7ed;
  --muted: #d7c7b8;
  --accent: #e8590c;
  --accent-soft: #ff8f3d;
  --border: rgba(255, 247, 237, 0.14);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  --radius: 24px;
  --radius-sm: 16px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  background: linear-gradient(135deg, #141414 0%, var(--bg) 100%);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  object-fit: cover;
}

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  display: flex;
  min-height: 100vh;
  overflow-x: hidden;
}

.sidebar {
  width: 280px;
  padding: 10px 20px;
  border-right: 1px solid var(--border);
  background: rgba(12, 12, 12, 0.82);
  backdrop-filter: blur(16px);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 10;
}

.brand {
  display: flex;
  align-items: center;
}

.brand img {
  height: 100px;
  width: auto;
  object-fit: contain;
  transition: filter 0.3s ease;
  filter: drop-shadow(0 0 12px var(--accent));
}



.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: white;
}

.mobile-toggle {
  display: none;
  border: 0;
  background: var(--surface);
  color: var(--text);
  width: 46px;
  height: 46px;
  border-radius: 14px;
  cursor: pointer;
  position: relative;
  transition: transform 0.25s ease, background 0.25s ease;
}

.mobile-toggle:hover {
  transform: translateY(-1px);
}

.mobile-toggle span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-toggle span:nth-child(2) {
  transform: translate(-50%, -8px);
}

.mobile-toggle span:nth-child(3) {
  transform: translate(-50%, 8px);
}

.mobile-toggle.active span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

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

.mobile-toggle.active span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 14px;
  color: var(--muted) ;
  transition: 0.25s ease;
  font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(232, 89, 12, 0.14);
  color: var(--text);
}

.sidebar-card {
  margin-top: auto;
  
  padding: 18px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(232, 89, 12, 0.18), rgba(255, 247, 237, 0.06));
  border: 1px solid var(--border);
}

.sidebar-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.sidebar-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.content {
  flex: 1;
  min-width: 0;
  margin-left: 280px;
  padding: 32px 32px 60px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

.topbar p {
  color: var(--muted);
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(232, 89, 12, 0.16), rgba(255, 247, 237, 0.04));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  margin-bottom: 14px;
}

.hero .lead {
  color: var(--muted);
  max-width: 580px;
  margin-bottom: 20px;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: white;
}

.btn-secondary {
  background: rgba(255, 247, 237, 0.08);
  color: var(--text);
  border-color: var(--border);
}

.hero-media {
  border-radius: 24px;
  overflow: hidden;
  min-height: 200px;
}

.hero-media img {
  height: 100%;
 
}

.section {
  padding: 34px 0 8px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 18px;
}

.section-heading h2 {
  font-size: 1.35rem;
}

.section-heading p {
  color: var(--muted);
  max-width: 560px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.testimonial-card,
.contact-card,
.faq-item,
.slide-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  box-shadow: var(--shadow);
}

.slide-card h3,
.contact-card h3 {
  margin-bottom: 8px;
}

.slide-card p,
.contact-card p,
.faq-answer p {
  color: var(--muted);
}

.badge {
  display: inline-block;
  font-size: 0.8rem;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(232, 89, 12, 0.16);
  color: #ffd7bb;
  margin-bottom: 10px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.stat-card {
  padding: 20px;
  text-align: center;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(232, 89, 12, 0.18), rgba(255, 247, 237, 0.05));
  border: 1px solid var(--border);
}

.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffd7bb;
}

.swiper-shell {
  position: relative;
  width: 100%;
}

.swiper {
  overflow: hidden;
  padding: 4px 0 16px;
}

.swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.swiper-slide {
  height: auto;
  display: flex;
  padding: 0 8px;
  min-width: 0;
}

.slide-card {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  min-width: 0;
}

.slider-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 10px;
}

.slider-btn {
  border: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 247, 237, 0.1);
  color: var(--text);
  cursor: pointer;
}

.slider-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.slide-card img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  aspect-ratio: 16 / 9;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 89, 12, 0.2), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 143, 61, 0.38);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

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

.testimonial-card:hover .testimonial-avatar {
  transform: scale(1.06);
}

.testimonial-card:hover .stars span {
  animation: starShimmer 0.7s ease infinite;
}

.testimonial-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: white;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.35s ease;
}

.testimonial-person h3 {
  margin-bottom: 2px;
  font-size: 1rem;
}

.testimonial-role {
  color: var(--muted);
  font-size: 0.84rem;
}

.verified-badge {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(232, 89, 12, 0.16);
  color: #ffd7bb;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.stars {
  display: flex;
  gap: 4px;
  color: #ffbf47;
  font-size: 1rem;
}

.testimonial-card blockquote {
  color: var(--muted);
  margin: 0;
  line-height: 1.75;
}

.testimonial-meta {
  color: #ffd7bb;
  font-size: 0.95rem;
  margin-top: auto;
}

@keyframes starShimmer {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-1px);
  }
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-item.active .faq-answer {
  max-height: 140px;
  margin-top: 10px;
}

.faq-icon {
  transition: transform 0.2s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}



.form-card,
.contact-card {
  padding: 24px;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

input,
textarea,
select {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.site-footer {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.site-footer h3 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.site-footer a,
.site-footer p {
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px 0 0;
  height: 56px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  box-shadow: 0 12px 30px rgba(18, 140, 126, 0.35);
  z-index: 1000;
  transition: transform 0.2s ease, box-shadow 0.2s ease, padding 0.25s ease;
  animation: whatsappPulse 2.4s ease-in-out infinite;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 16px 34px rgba(18, 140, 126, 0.4);
  animation: none;
  padding-right: 18px;
}

.whatsapp-float svg,
.whatsapp-float img {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.whatsapp-label {
  display: none;
}

@keyframes whatsappPulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 12px 30px rgba(18, 140, 126, 0.35);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 16px 34px rgba(18, 140, 126, 0.45);
  }
}

.status-message {
  margin-top: 10px;
  color: #ffd7bb;
  min-height: 1.2em;
}

.section-features,
.section-devices,
.how-it-works-section,
.testimonials-section {
  padding-top: 28px;
}

.testimonials-section {
  position: relative;
}

.feature-grid,
.device-grid {
  display: grid;
  gap: 18px;
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.device-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.feature-card,
.device-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.feature-card:hover,
.device-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 143, 61, 0.42);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

.feature-icon,
.device-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(232, 89, 12, 0.95), rgba(255, 143, 61, 0.9));
  color: white;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.feature-card:hover .feature-icon,
.device-card:hover .device-icon {
  transform: scale(1.06);
  box-shadow: 0 10px 20px rgba(232, 89, 12, 0.2);
}


.device-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  display: block;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}


.feature-card h3,
.device-card h3 {
  margin: 16px 0 8px;
  font-size: 1.05rem;
}

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

.how-it-works-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}

.how-it-works-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 143, 61, 0.42);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

.step-number {
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  color: rgba(255, 247, 237, 0.16);
}

.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: white;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.step-icon svg {
  width: 24px;
  height: 24px;
}

.how-it-works-card h3 {
  margin: 0;
  font-size: 1.05rem;
}

.how-it-works-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

.device-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 162px;
}

.device-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(232, 89, 12, 0.16);
  color: #ffd7bb;
  font-size: 0.8rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.pricing-section {
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 89, 12, 0.24), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 10px;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 143, 61, 0.38);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

.pricing-card-featured {
  border-color: rgba(255, 143, 61, 0.4);
  transform: translateY(-6px) scale(1.01);
  background: linear-gradient(135deg, rgba(232, 89, 12, 0.18), rgba(255, 255, 255, 0.05));
}

.pricing-card-featured:hover {
  transform: translateY(-10px) scale(1.02);
}

.popular-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 247, 237, 0.14);
  color: #ffd7bb;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing-header h3 {
  margin-bottom: 6px;
  font-size: 1.2rem;
}

.pricing-meta {
  color: var(--muted);
  font-size: 0.95rem;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price {
  font-size: 2.1rem;
  font-weight: 700;
  color: #ffd7bb;
}

.price-period {
  color: var(--muted);
  font-size: 0.95rem;
}

.pricing-features {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
  margin-top: 4px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(232, 89, 12, 0.16);
  color: #ffd7bb;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.pricing-btn {
  margin-top: auto;
  width: 100%;
}

.pricing-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
}

.pricing-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(232, 89, 12, 0.16);
  color: #ffd7bb;
  font-size: 0.9rem;
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.payment-chip {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.82rem;
}

.pricing-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.faq-preview {
  margin-top: 20px;
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(232, 89, 12, 0.12), rgba(255, 255, 255, 0.04));
  border: 1px solid var(--border);
}

.faq-preview-header h3 {
  margin-bottom: 12px;
  font-size: 1.08rem;
}

.faq-preview .faq-item {
  padding: 16px 18px;
}

.faq-preview .faq-item header h4 {
  font-size: 1rem;
}

.live-tv-section {
  padding-top: 28px;
}

.live-tv-swiper-shell {
  overflow: hidden;
  padding: 4px 0 8px;
}

.live-tv-swiper {
  overflow: visible;
}

.live-tv-swiper .swiper-wrapper {
  align-items: center;
}

.live-tv-slide {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.live-tv-slide img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  padding: 10px 8px;
  border-radius: 16px;
  background: transparent;
  box-shadow: none;
  border: none;
  transition: transform 0.3s ease;
}

.live-tv-slide:hover img {
  transform: translateY(-4px);
}

.cta-section {
  padding-top: 28px;
}

.cta-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 36px 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(232, 89, 12, 0.14), rgba(255, 255, 255, 0.05));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.cta-card::before {
  content: "";
  position: absolute;
  inset: auto -50px -40px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 89, 12, 0.18), transparent 70%);
  pointer-events: none;
}

.cta-card h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  line-height: 1.2;
}

.cta-card>p {
  color: var(--muted);
  max-width: 760px;
  margin: 0 auto;
}

.cta-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
}

.cta-highlights li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.92rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: 100%;
  margin-top: 6px;
}

.cta-btn {
  min-width: 220px;
  justify-content: center;
}

.cta-btn-outline {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border);
}

.cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}

.cta-icon svg {
  width: 18px;
  height: 18px;
}

.cta-note {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 2px;
}

.collection-card,
.genre-card,
.rank-card,
.release-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.collection-card:hover,
.genre-card:hover,
.rank-card:hover,
.release-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 143, 61, 0.38);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.collection-visual {
  height: 124px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  margin-bottom: 4px;
  overflow: hidden;
}

.collection-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.collection-visual-1 {
  background: linear-gradient(135deg, rgba(232, 89, 12, 0.9), rgba(255, 143, 61, 0.4));
}

.collection-visual-2 {
  background: linear-gradient(135deg, rgba(255, 143, 61, 0.95), rgba(255, 247, 237, 0.18));
}

.collection-visual-3 {
  background: linear-gradient(135deg, rgba(255, 247, 237, 0.22), rgba(232, 89, 12, 0.8));
}

.collection-visual-4 {
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(232, 89, 12, 0.42));
}

.collection-visual-5 {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(232, 89, 12, 0.72));
}

.collection-visual-6 {
  background: linear-gradient(135deg, rgba(232, 89, 12, 0.74), rgba(10, 10, 10, 0.92));
}

.collection-card h3,
.genre-card span,
.rank-card h3,
.release-card h3 {
  font-size: 1.05rem;
}

.collection-card p,
.genre-card,
.rank-card p,
.release-card p {
  color: var(--muted);
}

.genre-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.genre-card {
  align-items: center;
  justify-content: center;
  min-height: 88px;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ranked-list {
  display: grid;
  gap: 14px;
  list-style: none;
}

.rank-card {
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
}

.rank-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: white;
  font-weight: 700;
  flex-shrink: 0;
}

.rank-top,
.release-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}

.release-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.poster-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 164px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(232, 89, 12, 0.25), rgba(255, 247, 237, 0.06));
  color: #ffd7bb;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.release-poster {
  display: block;
  width: 100%;
  height: 164px;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
}

.release-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.release-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(232, 89, 12, 0.16);
  color: #ffd7bb;
  font-size: 0.78rem;
}

.feature-icon svg,
.device-icon svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 960px) {
  .page-shell {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    height: 100px;
    position: fixed;
    inset: auto;
    z-index: 1000;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
    background: rgba(12, 12, 12, 0.96);
    backdrop-filter: blur(16px);
  }
  
  .sidebar-card {
    display: none;
  }


  main{
    margin-top: 150px;
    padding-top: 0;
  }

  .nav-links {
    /* This is the mobile dropdown, not the direct sidebar links */
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 16px;
    right: 16px;
    flex-direction: column;
    padding: 12px;
    border-radius: 20px; /* background: oklab(0% 0 0 / 0.9); */
    background: rgba(22, 22, 22, 0.96);
    border: 1px solid var(--border);
    backdrop-filter: blur(12px);
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
  }

  .nav-links.show {
    display: flex;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .mobile-toggle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
  }

  .content {
    margin-left: 0;
    padding-top: 100px;
  }

  .hero,
  .newsletter {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .stats-grid,
  .testimonial-grid,
  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .genre-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .release-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .how-it-works-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .device-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-card-featured {
    grid-column: span 2;
  }
}

@media (min-width: 961px) and (max-width: 1280px) {
  .sidebar {
    width: 240px;
  }

  .content {
    margin-left: 240px;
    padding: 28px 24px 60px;
  }
}

@media (max-width: 640px) {
  .content {
    padding: 20px 16px 48px;
  }

  .hero,
  .newsletter,
  .form-card,
  .contact-card,
  .plan-card,
  .slide-card {
    padding: 18px;
  }

  .card-grid,
  .stats-grid,
  .testimonial-grid,
  .site-footer,
  .form-grid,
  .feature-grid,
  .how-it-works-grid,
  .genre-grid,
  .release-grid {
    grid-template-columns: 1fr;
  }

  .device-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .device-card {
    min-height: 140px;
    padding: 18px;
  }

  .device-icon {
    width: 46px;
    height: 46px;
  }

  .device-icon img {
    padding: 10px;
  }

  .hero-actions,
  .newsletter-form {
    flex-direction: column;
  }

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

  .pricing-card-featured {
    grid-column: span 1;
  }

  .pricing-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-btn {
    width: 100%;
    min-width: 0;
  }

  .live-tv-slide img {
    width: 84px;
    height: 84px;
    padding: 8px 10px;
  }
}