:root {
  --brand: #CB0302;
  --brand-dark: #9A0202;
  --accent: #cf6565;
  --accent-soft: #e07a7a;
  --bg: #080a10;
  --bg-elevated: #10131c;
  --bg-card: #161a24;
  --text: #f4f6fb;
  --text-muted: #9aa3b5;
  --text-dim: #6b7285;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --max: 1180px;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent-soft);
  text-decoration: none;
}

a:hover {
  color: #fff;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(8, 10, 16, 0.82);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}

@media (min-width: 900px) {
  .header-actions {
    gap: 1rem;
  }
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-wordmark {
  color: var(--brand);
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.1;
  white-space: nowrap;
}

.brand-wordmark-header {
  font-size: clamp(0.95rem, 2.4vw, 1.15rem);
}

.brand-wordmark-hero {
  font-size: clamp(1.85rem, 5vw, 2.65rem);
  letter-spacing: 0.12em;
  margin-bottom: 0.35rem;
}

.brand-wordmark-footer {
  font-size: 1.05rem;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.nav-desktop a {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.nav-desktop a:hover {
  color: #fff;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), #ff3d47);
  color: #fff !important;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(203, 3, 2, 0.28);
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.2s ease;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0 0 1rem;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  padding: 0.85rem 0.25rem;
  color: var(--text-muted);
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}

@media (min-width: 900px) {
  .nav-desktop {
    display: flex;
  }

  .menu-toggle,
  .nav-mobile {
    display: none !important;
  }
}

/* Hero */
.hero {
  position: relative;
  padding: 4.5rem 0 3rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto;
  height: 70%;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(203, 3, 2, 0.22), transparent 55%),
    radial-gradient(ellipse at 80% 10%, rgba(207, 101, 101, 0.15), transparent 50%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero-copy {
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--accent-soft);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 1rem 0 0.75rem;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero h1 span {
  color: var(--brand);
}

.hero-lead {
  max-width: 36rem;
  color: var(--text-muted);
  font-size: clamp(1rem, 2.2vw, 1.15rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand), #ff3d47);
  color: #fff;
  box-shadow: 0 12px 32px rgba(203, 3, 2, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border);
  color: #fff;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.75rem;
}

.badge {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
}

@media (min-width: 960px) {
  .hero {
    padding: 5.5rem 0 4rem;
  }

  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

/* Device showcase */
.showcase-wrap {
  position: relative;
  min-height: 320px;
}

.device-stage {
  position: relative;
  width: min(100%, 520px);
  margin-inline: auto;
}

.device-tv {
  background: linear-gradient(180deg, #1a1d28, #0d0f16);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 14px 14px 22px;
  box-shadow: var(--shadow);
}

.device-tv-screen {
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  background: #0a0c12;
  position: relative;
}

.device-tv-stand {
  width: 38%;
  height: 10px;
  margin: 12px auto 0;
  border-radius: 0 0 8px 8px;
  background: #2a2f3d;
}

.device-phone {
  position: absolute;
  right: -4%;
  bottom: -6%;
  width: 34%;
  max-width: 150px;
  background: #12151e;
  border: 2px solid #2a3040;
  border-radius: 22px;
  padding: 8px 6px 10px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
}

.device-phone-notch {
  width: 36%;
  height: 5px;
  margin: 0 auto 6px;
  border-radius: 999px;
  background: #0a0c12;
}

.device-phone-screen {
  aspect-ratio: 9 / 19;
  border-radius: 14px;
  overflow: hidden;
  background: #0a0c12;
}

/* UI mock inside devices */
.ui-mock {
  height: 100%;
  display: flex;
  flex-direction: column;
  font-size: 7px;
}

.ui-topbar {
  display: flex;
  gap: 4px;
  padding: 6px 8px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border);
}

.ui-chip {
  padding: 3px 6px;
  border-radius: 999px;
  background: rgba(207, 101, 101, 0.2);
  color: #f0a0a0;
  font-weight: 700;
}

.ui-chip.muted {
  background: rgba(255, 255, 255, 0.05);
  color: #9aa3b5;
}

.ui-chip.active {
  background: rgba(207, 101, 101, 0.28);
  color: #f0c0c0;
}

.ui-body {
  flex: 1;
  display: grid;
  grid-template-columns: 22% 1fr;
  min-height: 0;
}

.ui-sidebar {
  padding: 6px 4px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ui-side-item {
  height: 14px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
}

.ui-side-item.active {
  background: rgba(207, 101, 101, 0.35);
}

.ui-content {
  padding: 6px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  align-content: start;
}

.ui-poster {
  aspect-ratio: 2 / 3;
  border-radius: 4px;
  background: linear-gradient(160deg, #2a3142, #161a24);
  position: relative;
  overflow: hidden;
}

.ui-poster::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.65));
}

.ui-poster:nth-child(1) { background: linear-gradient(160deg, #4a2030, #1a1018); }
.ui-poster:nth-child(2) { background: linear-gradient(160deg, #20304a, #101820); }
.ui-poster:nth-child(3) { background: linear-gradient(160deg, #304a20, #101810); }
.ui-poster:nth-child(4) { background: linear-gradient(160deg, #4a3020, #181410); }
.ui-poster:nth-child(5) { background: linear-gradient(160deg, #30204a, #141018); }
.ui-poster:nth-child(6) { background: linear-gradient(160deg, #204a4a, #101818); }

.ui-phone-mock .ui-body {
  grid-template-columns: 1fr;
}

.ui-phone-mock .ui-content {
  grid-template-columns: repeat(2, 1fr);
}

.ui-live-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px;
}

.ui-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff4d55;
  box-shadow: 0 0 8px #ff4d55;
}

.ui-epg {
  margin: 0 8px 8px;
  padding: 6px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

.ui-epg-line {
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  margin-top: 4px;
}

.ui-epg-line.accent {
  width: 65%;
  background: linear-gradient(90deg, var(--accent), transparent);
}

/* Sections */
section {
  padding: 4.5rem 0;
}

.section-head {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 2.75rem;
}

.section-head h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: var(--text-muted);
}

.features-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.feature-card:hover {
  border-color: rgba(207, 101, 101, 0.35);
  transform: translateY(-2px);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(203, 3, 2, 0.12);
  color: var(--accent-soft);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.feature-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* Screenshots gallery */
.screens-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .screens-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.screen-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.screen-visual {
  aspect-ratio: 16 / 10;
  background: #0a0c12;
  position: relative;
  overflow: hidden;
}

.screen-caption {
  padding: 1rem 1.15rem 1.2rem;
}

.screen-caption h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.screen-caption p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* Mock variants for screenshot cards */
.mock-live {
  display: flex;
  height: 100%;
}

.mock-live-video {
  flex: 1.4;
  background: linear-gradient(135deg, #1a2030, #0a0c12);
  position: relative;
}

.mock-live-list {
  width: 38%;
  border-left: 1px solid var(--border);
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mock-row {
  height: 22px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
}

.mock-row.hot {
  background: rgba(207, 101, 101, 0.25);
  border: 1px solid rgba(207, 101, 101, 0.35);
}

.mock-detail {
  padding: 14px;
  display: grid;
  grid-template-columns: 28% 1fr;
  gap: 12px;
  height: 100%;
}

.mock-detail-poster {
  border-radius: 8px;
  background: linear-gradient(160deg, #4a2030, #161018);
}

.mock-detail-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mock-line {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.mock-line.short { width: 55%; }
.mock-line.mid { width: 75%; }
.mock-line.accent { width: 40%; background: rgba(207, 101, 101, 0.45); }

.mock-buttons {
  display: flex;
  gap: 6px;
  margin-top: auto;
}

.mock-btn {
  height: 22px;
  flex: 1;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.mock-btn.primary {
  background: linear-gradient(135deg, var(--brand), #ff3d47);
}

.mock-download {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mock-dl-item {
  display: flex;
  gap: 10px;
  align-items: center;
}

.mock-dl-thumb {
  width: 36px;
  height: 52px;
  border-radius: 6px;
  background: linear-gradient(160deg, #20304a, #101820);
}

.mock-dl-meta {
  flex: 1;
}

/* Platforms */
.platforms {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.02));
}

.platform-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .platform-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .platform-row-5 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1100px) {
  .platform-row-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}

.platform-card {
  text-align: center;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.platform-card strong {
  display: block;
  margin-top: 0.75rem;
  font-size: 1.05rem;
}

.platform-card span {
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* CTA */
.cta-band {
  margin: 2rem 0 0;
  padding: 2.5rem 1.5rem;
  border-radius: calc(var(--radius) + 4px);
  background:
    linear-gradient(135deg, rgba(203, 3, 2, 0.14), rgba(207, 101, 101, 0.08)),
    var(--bg-card);
  border: 1px solid rgba(203, 3, 2, 0.2);
  text-align: center;
}

.cta-band h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.cta-band p {
  margin: 0 auto 1.25rem;
  max-width: 32rem;
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 2rem;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.92rem;
  max-width: 22rem;
}

.footer-col h4 {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim);
}

.footer-col a {
  display: block;
  padding: 0.3rem 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  justify-content: space-between;
}

/* Legal pages */
.legal-page {
  padding: 3rem 0 4rem;
}

.legal-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 4vw, 2rem);
}

.legal-card h1 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.75rem, 4vw, 2.2rem);
}

.legal-meta {
  color: var(--text-dim);
  font-size: 0.88rem;
  margin-bottom: 1.75rem;
}

.legal-card h2 {
  margin: 1.75rem 0 0.5rem;
  font-size: 1.1rem;
}

.legal-card p,
.legal-card li {
  color: var(--text-muted);
}

.legal-card ul {
  padding-left: 1.2rem;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.92rem;
}

.contact-box {
  margin-top: 1.5rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
}

.contact-box a {
  font-weight: 700;
  color: var(--accent-soft);
}

/* Language switcher */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 3px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.lang-switch button {
  padding: 0.35rem 0.65rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.lang-switch button.active {
  background: rgba(203, 3, 2, 0.25);
  color: #fff;
}

.stats-bar {
  padding: 2rem 0 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  text-align: center;
  padding: 1.15rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.stat-value {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--brand);
  line-height: 1.1;
}

.stat-label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Detail sections */
.detail-section {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.015));
}

.detail-block {
  display: grid;
  gap: 2rem;
  align-items: center;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}

.detail-block:last-child {
  border-bottom: 0;
}

@media (min-width: 900px) {
  .detail-block {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3rem 0;
  }

  .detail-block.reverse .detail-visual {
    order: 2;
  }

  .detail-block.reverse .detail-copy {
    order: 1;
  }
}

.detail-tag {
  display: inline-block;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(203, 3, 2, 0.12);
  color: var(--accent-soft);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.detail-copy h3 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  letter-spacing: -0.02em;
}

.detail-copy > p {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
}

.detail-bullets {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.detail-bullets li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.detail-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}

.detail-visual {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  position: relative;
}

/* How it works */
.how-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .how-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.how-step {
  text-align: center;
  padding: 1.75rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.how-num {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(203, 3, 2, 0.15);
  color: var(--brand);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.how-step h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.how-step p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Trust section */
.trust-grid {
  display: grid;
  gap: 0.75rem;
  max-width: 640px;
  margin: 0 auto;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-muted);
  font-size: 0.92rem;
}

.trust-item::before {
  content: "✓";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(203, 3, 2, 0.15);
  color: var(--accent-soft);
  font-size: 0.75rem;
  font-weight: 800;
}

/* Extra mockups */
.mock-live-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  background: var(--brand);
  font-size: 10px;
  font-weight: 800;
  color: #fff;
}

.mock-player {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #0a0c12;
}

.mock-player-video {
  flex: 1;
  background: linear-gradient(135deg, #1a2030 40%, #0d1520);
  position: relative;
}

.mock-player-bar {
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.mock-progress {
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
}

.mock-progress::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 42%;
  height: 100%;
  border-radius: 999px;
  background: var(--brand);
}

.mock-quality-chip {
  position: absolute;
  bottom: 12px;
  right: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.65);
  font-size: 9px;
  font-weight: 600;
  color: var(--text-muted);
}

.mock-lang {
  padding: 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mock-lang-title {
  text-align: center;
  font-weight: 700;
  font-size: 11px;
  margin-bottom: 4px;
}

.mock-lang-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  flex: 1;
}

.mock-lang-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 6px 4px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  font-size: 8px;
}

.mock-lang-item.hot {
  border-color: rgba(207, 101, 101, 0.5);
  background: rgba(207, 101, 101, 0.15);
}

.mock-lang-flag {
  font-size: 14px;
  line-height: 1;
}

.mock-lang-btn {
  margin-top: auto;
  padding: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), #ff3d47);
  text-align: center;
  font-size: 9px;
  font-weight: 700;
  color: #fff;
}

.mock-login {
  padding: 20px 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.mock-login-brand {
  font-weight: 800;
  font-size: 12px;
  color: var(--brand);
  letter-spacing: 0.08em;
}

.mock-login-field {
  width: 80%;
  height: 22px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
}

.mock-login-tabs {
  display: flex;
  gap: 6px;
}

.mock-login-tab {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
}

.mock-login-tab.active {
  background: rgba(207, 101, 101, 0.25);
  color: #f0c0c0;
}

.mock-tv-nav {
  height: 100%;
  display: flex;
}

.mock-tv-menu {
  width: 18%;
  padding: 8px 4px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mock-tv-menu-item {
  height: 16px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
}

.mock-tv-menu-item.focus {
  background: rgba(207, 101, 101, 0.35);
  box-shadow: 0 0 0 2px rgba(207, 101, 101, 0.6);
}

.mock-tv-main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.mock-tv-cats {
  display: flex;
  gap: 4px;
  padding: 6px 8px;
  border-bottom: 1px solid var(--border);
}

.mock-tv-grid {
  flex: 1;
  padding: 8px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
  align-content: start;
}

.mock-tv-poster {
  aspect-ratio: 2 / 3;
  border-radius: 4px;
  background: linear-gradient(160deg, #2a3142, #161a24);
}

.mock-tv-poster.focus {
  box-shadow: 0 0 0 2px var(--brand);
}

.mock-dl-progress {
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  margin-top: 4px;
  position: relative;
}

.mock-dl-progress::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  border-radius: 999px;
  background: var(--brand);
}

.mock-dl-item:nth-child(1) .mock-dl-progress::after { width: 72%; }
.mock-dl-item:nth-child(2) .mock-dl-progress::after { width: 100%; background: #3d9a5f; }
.mock-dl-item:nth-child(3) .mock-dl-progress::after { width: 28%; }

.mock-dl-btns {
  display: flex;
  gap: 4px;
  margin-top: 4px;
}

.mock-dl-btn {
  height: 14px;
  flex: 1;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
}

.mock-dl-btn.focus {
  background: rgba(207, 101, 101, 0.35);
  box-shadow: 0 0 0 1px rgba(207, 101, 101, 0.5);
}

.screens-grid.cols-3 {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .screens-grid.cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .screens-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.features-grid.cols-4 {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .features-grid.cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .features-grid.cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

#ozellikler {
  padding-top: 3rem;
}
