/* style.css */
/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #050505;
  color: #ffffff;
  overflow-x: hidden;
}

/* =========================
   THEME
========================= */
:root {
  --gold: #f3b233;
  --gold-dark: #b97a12;
  --gold-soft: rgba(243, 178, 51, 0.18);
  --gold-bright: #ffc953;
  --text-light: #f5f5f5;
  --text-muted: #d0d0d0;
  --border-gold: rgba(243, 178, 51, 0.35);
  --card-bg: rgba(10, 10, 10, 0.78);
  --shadow-gold: 0 0 24px rgba(243, 178, 51, 0.18);
  --max-width: 1320px;
  --live-red: #cf2424;
  --next-blue: #2a6df6;
}

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

img {
  display: block;
  width: 100%;
}

button {
  border: none;
  outline: none;
  cursor: pointer;
  font: inherit;
}

.container {
  width: min(94%, var(--max-width));
  margin: 0 auto;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--gold);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.section-subtitle {
  text-align: center;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #ffffff;
  line-height: 1.5;
  margin-bottom: 36px;
}

.section-subtitle span {
  color: var(--gold);
  font-weight: 800;
}

.gold-line-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.gold-line-title::before,
.gold-line-title::after {
  content: "";
  height: 1px;
  width: 120px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

/* =========================
   BACKGROUND
========================= */
.site-bg {
  position: fixed;
  inset: 0;
  z-index: -5;
  background:
    radial-gradient(circle at 50% 20%, rgba(243, 178, 51, 0.1), transparent 28%),
    linear-gradient(180deg, #080808 0%, #050505 100%);
}

/* =========================
   HEADER
========================= */
.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(243, 178, 51, 0.18);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 20px;
  position: relative;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 70px;
    width: auto;
    display: block;
}


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

.nav-menu a {
  color: #f5f5f5;
  font-weight: 700;
  font-size: 0.98rem;
  transition: 0.25s ease;
  position: relative;
}

.nav-menu a:hover {
  color: var(--gold);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(243, 178, 51, 0.08);
  border: 1px solid rgba(243, 178, 51, 0.2);
  color: #fff;
  font-size: 1.5rem;
}

/* =========================
   HERO
========================= */
.hero {
  position: relative;
  min-height: 820px;
  padding: 52px 0 34px;
  display: flex;
  align-items: flex-start;
}

.hero-cover {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.6) 100%),
    url("image/background1.png") center center / cover no-repeat;
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 560px 1fr;
  gap: 24px;
  align-items: start;
}

.hero-copy {
  max-width: 540px;
  padding-top: 6px;
}

.hero-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 10px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold-bright);
  border: 1px solid rgba(243, 178, 51, 0.26);
  background: rgba(243, 178, 51, 0.08);
}

.hero-title {
  font-size: clamp(2.9rem, 4vw, 3.9rem);
  line-height: 0.92;
  font-weight: 900;
  letter-spacing: -0.8px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.hero-title .gold {
  color: var(--gold);
}

.hero-title .white {
  color: #ffffff;
}

.hero-text {
  font-size: 1rem;
  color: #eaeaea;
  margin-bottom: 18px;
  max-width: 470px;
  line-height: 1.45;
}

.hero-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 18px;
}

.btn {
  padding: 10px 16px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15px;
  transition: 0.25s ease;
}

.btn-primary {
  background: linear-gradient(to bottom, #f8c14a, #d5951a);
  color: #111;
  box-shadow: 0 8px 20px rgba(243, 178, 51, 0.18);
}

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

.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(243, 178, 51, 0.08);
}

.hero-status-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 12px;
  margin-bottom: 18px;
}

.status-card {
  display: block;
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(243, 178, 51, 0.22);
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.status-card:hover {
  transform: translateY(-3px);
  border-color: rgba(243, 178, 51, 0.45);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.34), var(--shadow-gold);
}

.status-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 4px 8px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #fff;
}

.status-badge.live {
  background: var(--live-red);
}

.status-badge.next {
  background: var(--next-blue);
}

.status-meta {
  font-size: 0.78rem;
  color: #d6d6d6;
  font-weight: 700;
}

.status-card-media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #111;
  overflow: hidden;
}

.status-card-media img {
  height: 100%;
  object-fit: cover;
}

.play-pill {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  border: 1px solid rgba(243, 178, 51, 0.5);
  font-size: 1rem;
  cursor: pointer;
}

.status-card-body {
  padding: 12px;
}

.status-card-body h3 {
  font-size: 1.02rem;
  margin-bottom: 6px;
  color: #fff;
}

.status-card-body p {
  font-size: 0.82rem;
  color: #d0d0d0;
  line-height: 1.45;
}

.status-card-body-compact {
  min-height: 142px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.status-link-text {
  display: inline-block;
  margin-top: 10px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.access-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.access-chip {
  padding: 6px 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.7px;
  color: #f3f3f3;
  border: 1px solid rgba(243, 178, 51, 0.2);
  background: rgba(255, 255, 255, 0.03);
}

.hero-visual {
  position: relative;
  min-height: 470px;
}

.hero-map-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 62% 56%, rgba(255, 202, 86, 0.24), transparent 22%),
    radial-gradient(circle at 80% 26%, rgba(255, 202, 86, 0.1), transparent 18%);
  pointer-events: none;
}

.preview-card {
  position: absolute;
  width: 200px;
  background: rgba(0, 0, 0, 0.86);
  border: 1px solid rgba(243, 178, 51, 0.42);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.42);
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.preview-card:hover {
  transform: translateY(-3px);
  border-color: rgba(243, 178, 51, 0.55);
}

.preview-card .thumb {
  height: 108px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.thumb-9 {
  background-image: url("image/9.png");
}

.thumb-10 {
  background-image: url("image/10.png");
}

.thumb-12 {
  background-image: url("image/12.png");
}

.preview-card .card-content {
  padding: 9px 10px;
}

.mini-badge {
  display: inline-block;
  margin-bottom: 6px;
  padding: 3px 6px;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.7px;
  background: var(--live-red);
  color: #fff;
  text-transform: uppercase;
}

.mini-badge.live {
  background: var(--live-red);
}

.mini-badge.next {
  background: var(--next-blue);
}

.mini-badge.today,
.mini-badge.soon {
  background: var(--gold);
  color: #111;
}

.preview-card.is-live {
  border-color: rgba(207, 36, 36, 0.72);
}

.preview-card.is-next {
  border-color: rgba(42, 109, 246, 0.72);
}

.preview-card.is-today,
.preview-card.is-soon {
  border-color: rgba(243, 178, 51, 0.5);
}

.preview-card h4 {
  font-size: 0.88rem;
  margin-bottom: 4px;
}

.preview-card p {
  font-size: 0.72rem;
  color: #ccc;
  line-height: 1.35;
}

.card-1 {
  top: 6px;
  right: 22px;
}

.card-2 {
  top: 172px;
  left: 18px;
}

.card-3 {
  top: 274px;
  right: 6px;
}

/* =========================
   GLOBAL REACH
========================= */
.global-reach {
  position: relative;
  padding: 85px 0;
}

.reach-map {
  position: relative;
  min-height: 430px;
  border: 1px solid rgba(243, 178, 51, 0.12);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.35)),
    url("image/background2.png") center center / cover no-repeat;
}

.global-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.global-proof-card {
  padding: 18px;
  border: 1px solid rgba(243, 178, 51, 0.14);
  background: rgba(255, 255, 255, 0.02);
}

.global-proof-card h3 {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 8px;
}

.global-proof-card p {
  color: #d7d7d7;
  font-size: 0.92rem;
  line-height: 1.55;
}

.reach-caption {
  margin-top: 26px;
  text-align: center;
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  color: #ececec;
  line-height: 1.7;
}

/* =========================
   SHOWS
========================= */
.shows {
  padding: 75px 0;
}

.shows-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.show-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(243, 178, 51, 0.14);
  overflow: hidden;
  transition: 0.25s ease;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

.show-card:hover {
  transform: translateY(-6px);
  border-color: rgba(243, 178, 51, 0.38);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.3), var(--shadow-gold);
}

.show-card.is-franchise {
  border-color: rgba(243, 178, 51, 0.35);
}

.show-card.is-primetime {
  border-color: rgba(255, 201, 83, 0.26);
  box-shadow: 0 0 0 1px rgba(255, 201, 83, 0.08) inset;
}

.card-tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 8px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(243, 178, 51, 0.08);
  border: 1px solid rgba(243, 178, 51, 0.18);
}

.show-thumb {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
}

.show-thumb img {
  height: 100%;
  object-fit: cover;
}

.show-content {
  padding: 16px;
}

.show-content h3 {
  color: var(--gold);
  font-size: 1.15rem;
  margin-bottom: 8px;
  font-weight: 800;
}

.show-content p {
  color: #dddddd;
  line-height: 1.6;
  font-size: 0.94rem;
}

/* =========================
   PRIMETIME
========================= */
.primetime-section {
  padding: 10px 0 70px;
}

.primetime-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.primetime-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 124px;
  padding: 18px 16px;
  background:
    linear-gradient(180deg, rgba(243, 178, 51, 0.12), rgba(255, 255, 255, 0.02)),
    rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(243, 178, 51, 0.25);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.primetime-card:hover {
  transform: translateY(-4px);
  border-color: rgba(243, 178, 51, 0.5);
}

.primetime-time {
  color: var(--gold);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.primetime-title {
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
}

/* =========================
   LINEUP
========================= */
.lineup-section {
  padding: 80px 0;
}

.lineup-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.lineup-legend {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.legend-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 5px 10px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #fff;
}

.legend-live {
  background: var(--live-red);
}

.legend-next {
  background: var(--next-blue);
}

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

.lineup-card {
  position: relative;
  background:
    linear-gradient(135deg, rgba(243, 178, 51, 0.1), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(243, 178, 51, 0.16);
  overflow: hidden;
  transition: 0.25s ease;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.24);
}

.lineup-card:hover {
  transform: translateY(-5px);
  border-color: rgba(243, 178, 51, 0.34);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.3), var(--shadow-gold);
}

.lineup-card.is-primetime {
  border-color: rgba(255, 201, 83, 0.22);
}

.lineup-card.is-franchise {
  border-color: rgba(243, 178, 51, 0.28);
}

.lineup-card.is-live {
  border-color: rgba(207, 36, 36, 0.7);
  box-shadow:
    0 0 0 1px rgba(207, 36, 36, 0.2) inset,
    0 18px 35px rgba(0, 0, 0, 0.3);
}

.lineup-card.is-next {
  border-color: rgba(42, 109, 246, 0.65);
  box-shadow:
    0 0 0 1px rgba(42, 109, 246, 0.16) inset,
    0 18px 35px rgba(0, 0, 0, 0.3);
}

.lineup-image {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
}

.lineup-image img {
  height: 100%;
  object-fit: cover;
}

.lineup-info {
  padding: 16px;
}

.lineup-status-slot {
  min-height: 28px;
  margin-bottom: 6px;
}

.lineup-status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 4px 8px;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #fff;
}

.lineup-status-badge.live {
  background: var(--live-red);
}

.lineup-status-badge.next {
  background: var(--next-blue);
}

.lineup-info h3 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 8px;
  line-height: 1.35;
}

.lineup-category {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 8px;
}

.lineup-time {
  color: #f1f1f1;
  font-size: 0.95rem;
  margin-bottom: 6px;
  font-weight: 700;
}

.lineup-platform {
  color: #cfcfcf;
  font-size: 0.92rem;
}

/* =========================
   APP SECTION
========================= */
.app-section {
  padding: 80px 0 90px;
}

.app-box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 35px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(243, 178, 51, 0.1), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(243, 178, 51, 0.15);
  padding: 42px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.app-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold);
  margin-bottom: 14px;
  text-transform: uppercase;
  line-height: 1.1;
}

.app-copy p {
  color: #e6e6e6;
  line-height: 1.7;
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.store-btn {
  min-width: 190px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #0b0b0b;
  border: 1px solid rgba(243, 178, 51, 0.2);
  color: #fff;
  transition: 0.25s ease;
}

.store-btn:hover {
  transform: translateY(-3px);
  border-color: rgba(243, 178, 51, 0.4);
  box-shadow: var(--shadow-gold);
}

.store-btn .icon {
  font-size: 1.55rem;
  line-height: 1;
}

.store-btn small {
  display: block;
  color: #cfcfcf;
  font-size: 0.75rem;
}

.store-btn strong {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.3px;
}

.phone-mockup {
  position: relative;
  width: 250px;
  margin-inline: auto;
  padding: 10px;
  border-radius: 36px;
  background: linear-gradient(180deg, #3a3a3a, #111111 40%, #050505 100%);
  border: 2px solid #4c4c4c;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.45),
    0 0 0 2px rgba(255, 255, 255, 0.03) inset,
    0 0 30px rgba(243, 178, 51, 0.08);
}

.phone-inner-frame {
  padding: 6px;
  border-radius: 30px;
  background: linear-gradient(180deg, #1c1c1c, #090909);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 8px 16px rgba(255, 255, 255, 0.03);
}

.phone-screen {
  border-radius: 25px;
  height: 500px;
  overflow: hidden;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.55)),
    url("image/background1.png") center center / cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    inset 0 -30px 60px rgba(0, 0, 0, 0.18);
}

.phone-card:nth-child(4) {
    display: none;
}

.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 115px;
  height: 24px;
  border-radius: 14px;
  background: #070707;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 4;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.04);
}

.phone-notch .speaker {
  width: 42px;
  height: 5px;
  border-radius: 999px;
  background: #1e1e1e;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.06);
}

.phone-notch .camera {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #2d3cff, #0c0c0c 70%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.phone-screen-inner {
  padding: 50px 14px 14px;
}

.phone-logo {
  color: var(--gold);
  font-weight: 900;
  font-size: 1.3rem;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.phone-headline {
  font-size: 2rem;
  line-height: 0.96;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.phone-headline span {
  color: var(--gold);
}

.phone-mini-text {
  color: #f0f0f0;
  font-size: 0.84rem;
  line-height: 1.45;
  margin-bottom: 14px;
}

.phone-actions {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.phone-btn {
  flex: 1;
  font-size: 0.72rem;
  font-weight: 800;
  text-align: center;
  padding: 10px 8px;
  text-transform: uppercase;
}

.phone-btn.primary {
  background: linear-gradient(to bottom, #f8c14a, #d5951a);
  color: #111;
}

.phone-btn.secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(243, 178, 51, 0.25);
  color: #fff;
}

.phone-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.phone-card {
  min-height: 74px;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(243, 178, 51, 0.16);
  background: rgba(0, 0, 0, 0.25);
}

.phone-card img {
  height: 100%;
  object-fit: cover;
}

.side-btn {
  position: absolute;
  background: linear-gradient(180deg, #555, #1a1a1a);
  border-radius: 999px;
  z-index: 1;
}

.side-btn-left {
  left: -4px;
  width: 3px;
}

.side-btn-left-1 {
  top: 95px;
  height: 28px;
}

.side-btn-left-2 {
  top: 132px;
  height: 42px;
}

.side-btn-right {
  right: -4px;
  top: 120px;
  width: 3px;
  height: 56px;
}

/* =========================
   FOOTER
========================= */
.footer {
  border-top: 1px solid rgba(243, 178, 51, 0.15);
  padding: 28px 0;
  background: rgba(0, 0, 0, 0.35);
}

.footer-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.footer p {
  color: #cfcfcf;
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #d8d8d8;
  font-size: 0.92rem;
  transition: 0.25s ease;
}

.footer-links a:hover {
  color: var(--gold);
}

/* =========================
   REVEAL ANIMATION
========================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {
  .hero-grid,
  .app-box {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: left;
    margin-inline: 0;
    max-width: 540px;
    padding-top: 0;
  }

  .hero-text {
    margin-inline: 0;
  }

  .hero-buttons {
    justify-content: flex-start;
  }

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

  .hero-visual {
    min-height: 470px;
  }

  .global-proof-grid {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-menu {
    position: absolute;
    top: 81px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(5, 5, 5, 0.97);
    border-bottom: 1px solid rgba(243, 178, 51, 0.12);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .nav-menu.active {
    max-height: 420px;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu a {
    display: block;
    width: 100%;
    padding: 16px 4%;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
  }

  .nav-menu a::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 46px 0 24px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3.1rem);
    line-height: 0.94;
  }

  .hero-text {
    font-size: 0.95rem;
    max-width: 100%;
  }

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

  .hero-buttons .btn {
    min-width: unset;
    width: auto;
  }

  .hero-visual {
    min-height: 360px;
    margin-top: 4px;
  }

  .preview-card {
    width: 165px;
  }

  .preview-card .thumb {
    height: 88px;
  }

  .card-1 {
    top: 0;
    right: 12px;
  }

  .card-2 {
    top: 132px;
    left: 0;
  }

  .card-3 {
    top: 220px;
    right: 0;
  }

  .reach-map {
    min-height: 300px;
  }

  .app-box {
    padding: 28px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(94%, 100%);
  }

  .gold-line-title::before,
  .gold-line-title::after {
    width: 50px;
  }

  .shows-grid,
  .primetime-grid,
  .lineup-grid {
    grid-template-columns: 1fr;
  }

  .lineup-header {
    flex-direction: column;
    align-items: stretch;
  }

  .lineup-legend {
    margin-bottom: 18px;
  }

  .preview-card {
    width: 150px;
  }

  .preview-card .thumb {
    height: 82px;
  }

  .preview-card .card-content {
    padding: 9px 8px;
  }

  .preview-card h4 {
    font-size: 0.82rem;
  }

  .preview-card p {
    font-size: 0.68rem;
    line-height: 1.28;
  }

  .card-1 {
    top: 0;
    right: 0;
  }

  .card-2 {
    top: 120px;
    left: 0;
  }

  .card-3 {
    top: 206px;
    right: 0;
  }

  .phone-mockup {
    width: 230px;
    border-radius: 34px;
  }

  .phone-inner-frame {
    border-radius: 28px;
  }

  .phone-screen {
    min-height: 510px;
    border-radius: 23px;
  }

  .phone-headline {
    font-size: 1.8rem;
  }

  .phone-mini-text {
    font-size: 0.8rem;
  }

  .footer-wrap {
    flex-direction: column;
    text-align: center;
  }
}

/* =========================
   MARK UPDATE: PRACTICAL MOBILE + SAFETY PATCH
========================= */
img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  body {
    min-width: 0;
  }

  .container {
    width: min(100% - 32px, 1200px);
  }
}

/* =========================
   EXTRA CODE
========================= */

html,
body {
    width: 1200px;
    min-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
}

.store-badges,
.store-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    align-items:center;
}

.store-badge{
    display:block;
    height:64px;
    width:auto;
    transition:transform .2s ease;
}

.store-badge:hover{
    transform:translateY(-3px);
}

.device-preview{
    display:flex;
    align-items:center;
    justify-content:center;
}

.device-preview-image{
    max-width:100%;
    height:auto;
    display:block;
}