:root {
  --primary: #00d4ff;
  --primary-dark: #0099cc;
  --accent: #00ff88;
  --bg-1: #0f172a;
  --bg-2: #1e293b;
  --card: #1e293b;
  --card-dark: #334155;
  --text: #f8fafc;
  --muted: #94a3b8;
  --border: rgba(255, 255, 255, 0.06);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  --radius-lg: 24px;
  --radius-md: 16px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg-1);
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(15, 23, 42, 0.8);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.brand.small {
  font-size: 16px;
}

.brand.small img {
  width: 28px;
  height: 28px;
}

.nav-links {
  display: flex;
  gap: 24px;
  font-weight: 600;
  color: var(--muted);
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  transition: color 0.2s ease;
}

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

.nav-links a.highlight {
  color: var(--primary);
  background: rgba(0, 212, 255, 0.08);
  padding: 6px 12px;
  border-radius: 8px;
  font-weight: 700;
  border: 1px solid rgba(0, 212, 255, 0.15);
  transition: all 0.2s ease;
}

.nav-links a.highlight:hover {
  background: rgba(0, 212, 255, 0.15);
  color: var(--text);
  border-color: rgba(0, 212, 255, 0.3);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Highlighted Subscribe Button */
.btn-subscribe {
  background: linear-gradient(135deg, #00ff88 0%, #00d4ff 100%);
  color: #001018 !important;
  padding: 10px 20px;
  border-radius: 12px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-subscribe::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: 0.5s;
}

.btn-subscribe:hover::after {
  left: 100%;
}

.btn-subscribe:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 255, 136, 0.4);
}

/* Highlighted Get App Button (Blue/Cyan) */
.btn-get-app {
  background: linear-gradient(135deg, #00d4ff 0%, #0080ff 100%);
  color: #001018 !important;
  padding: 10px 20px;
  border-radius: 12px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
  border: none;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-get-app::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: 0.5s;
}

.btn-get-app:hover::after {
  left: 100%;
}

.btn-get-app:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 212, 255, 0.4);
}

.btn-get-app--large {
  padding: 14px 28px;
  font-size: 15px;
  border-radius: 14px;
}

.hero {
  padding: 80px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(32px, 4vw, 48px);
  margin: 16px 0;
}

.hero-copy p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 255, 136, 0.12);
  color: var(--accent);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.4px;
}

.hero-actions {
  margin: 26px 0 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}

.hero-card {
  background: linear-gradient(160deg, rgba(26, 31, 58, 0.9), rgba(15, 19, 32, 0.9));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.hero-preview {
  display: grid;
  gap: 20px;
}

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

.preview-top img {
  width: 44px;
  height: 44px;
}

.preview-title {
  font-weight: 700;
}

.preview-sub {
  color: var(--muted);
  font-size: 14px;
}

.preview-screen {
  display: grid;
  grid-template-columns: repeat(3, minmax(80px, 1fr));
  gap: 12px;
}

.screen-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 12px;
  display: grid;
  justify-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}

.screen-card img {
  width: 34px;
  height: 34px;
}

.preview-footer {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
}

/* Stats section */
.section-stats {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(30, 41, 59, 0.3);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section {
  padding: 80px 0;
}

.section.alt {
  background: rgba(255, 255, 255, 0.05);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-header {
  margin-bottom: 32px;
}

.section-header h2 {
  font-size: clamp(26px, 3vw, 34px);
  margin-bottom: 12px;
}

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

/* ========== Why StreamHub — features section ========== */
.why-streamhub {
  position: relative;
}

.why-streamhub-header {
  text-align: center;
  margin-bottom: 48px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Section Labels / Badges */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  margin-bottom: 20px;
  color: var(--text);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.section-label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 10px var(--primary);
  animation: pulse 2s infinite;
}

.section-label--accent::before {
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

@keyframes pulse {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
  100% { opacity: 1; transform: scale(1); }
}

/* Remove old badge styles to prevent conflicts */
.why-streamhub-badge,
.how-it-works-badge,
.subscribe-badge,
.block-title__badge {
  display: none !important;
}

.block-title {
  margin-bottom: 40px;
}

.why-streamhub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

@media (max-width: 900px) {
  .why-streamhub-grid {
    grid-template-columns: 1fr;
  }
}

.why-card {
  padding: 32px 26px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(165deg, rgba(38, 48, 78, 0.6) 0%, rgba(26, 33, 55, 0.85) 100%);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  border-color: rgba(255, 255, 255, 0.12);
}

.why-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #fff;
}

.why-card__icon--nav {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.25) 0%, rgba(0, 153, 204, 0.35) 100%);
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.why-card__icon--design {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.2) 0%, rgba(0, 200, 120, 0.3) 100%);
  border: 1px solid rgba(0, 255, 136, 0.3);
}

.why-card__icon--play {
  background: linear-gradient(135deg, rgba(138, 155, 184, 0.25) 0%, rgba(74, 95, 130, 0.35) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.why-card__title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--text);
  letter-spacing: -0.01em;
}

.why-card__text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* ========== How it works ========== */
.how-it-works {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.how-it-works-header {
  text-align: center;
  margin-bottom: 48px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.how-it-works-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.25);
}

.how-it-works-title {
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: var(--text);
  line-height: 1.15;
}

.how-it-works-subtitle {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

@media (max-width: 900px) {
  .how-it-works-grid {
    grid-template-columns: 1fr;
  }
}

.how-step {
  position: relative;
  padding: 32px 26px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(165deg, rgba(38, 48, 78, 0.5) 0%, rgba(26, 33, 55, 0.75) 100%);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.how-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
  border-color: rgba(255, 255, 255, 0.12);
}

.how-step__number {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 255, 136, 0.2);
  border: 1px solid rgba(0, 255, 136, 0.35);
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-step__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--accent);
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.15) 0%, rgba(0, 200, 120, 0.25) 100%);
  border: 1px solid rgba(0, 255, 136, 0.25);
}

.how-step__title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--text);
  letter-spacing: -0.01em;
}

.how-step__text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

/* Platforms Section — High-Energy Glow Cards */
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.platform-card {
  position: relative;
  padding: 40px 32px;
  border-radius: 30px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Individual Brand Backglows */
.platform-card--android { background: radial-gradient(circle at top left, rgba(0, 212, 255, 0.12), transparent); }
.platform-card--apple { background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent); }
.platform-card--smart-tv { background: radial-gradient(circle at top left, rgba(99, 102, 241, 0.12), transparent); }

.platform-card:hover {
  transform: translateY(-10px) scale(1.02);
  background-color: rgba(30, 41, 59, 0.8);
}

.platform-card--android:hover { border-color: rgba(0, 212, 255, 0.6); box-shadow: 0 30px 60px rgba(0, 212, 255, 0.2); }
.platform-card--apple:hover { border-color: rgba(255, 255, 255, 0.5); box-shadow: 0 30px 60px rgba(255, 255, 255, 0.15); }
.platform-card--smart-tv:hover { border-color: rgba(99, 102, 241, 0.6); box-shadow: 0 30px 60px rgba(99, 102, 241, 0.25); }

.platform-logo {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95); /* Brilliant white */
  margin-bottom: 28px;
  border: 1px solid #ffffff;
  box-shadow: 
    0 0 20px rgba(255, 255, 255, 0.4),
    0 8px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.platform-card:hover .platform-logo {
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
}

.platform-card--android .platform-logo { border-color: rgba(0, 212, 255, 0.4); }
.platform-card--smart-tv .platform-logo { border-color: rgba(99, 102, 241, 0.4); }

.platform-logo img {
  width: 34px;
  height: 34px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}
.platform-card h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.platform-card p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
}

.platform-badge {
  position: absolute;
  top: 32px;
  right: 32px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.platform-badge--available {
  color: #00ffbb;
  background: rgba(0, 255, 187, 0.1);
  border-color: rgba(0, 255, 187, 0.4);
  box-shadow: 0 0 15px rgba(0, 255, 187, 0.15);
}

.platform-badge.soon {
  color: #ffd900;
  background: rgba(255, 217, 0, 0.1);
  border-color: rgba(255, 217, 0, 0.4);
}
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.step {
  border-radius: 20px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
}

.step-index {
  font-size: 13px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 1px;
}

.step h3 {
  margin: 12px 0 10px;
}

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

.faq {
  display: grid;
  gap: 14px;
}

.policy-text {
  color: var(--muted);
  line-height: 1.7;
  font-size: 16px;
  display: grid;
  gap: 12px;
}

.policy-text h3 {
  color: var(--text);
  margin-top: 12px;
  font-size: 18px;
}

details {
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 0;
  background: rgba(30, 41, 59, 0.5);
  overflow: hidden;
  transition: background 0.2s ease;
}

details:hover {
  background: rgba(30, 41, 59, 0.8);
}

summary {
  cursor: pointer;
  font-weight: 600;
  padding: 20px 24px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  font-size: 20px;
  color: var(--primary);
  transition: transform 0.3s ease;
}

details[open] summary::after {
  transform: rotate(45deg);
}

details p {
  color: var(--muted);
  padding: 0 24px 20px;
  line-height: 1.6;
  animation: fadeIn 0.4s ease-out;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: linear-gradient(120deg, rgba(0, 153, 204, 0.2), rgba(0, 255, 136, 0.15));
}

.cta-card p {
  color: var(--muted);
  margin-top: 10px;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 30px 0 50px;
  background: rgba(26, 34, 51, 0.85);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 14px;
}

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

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

@media (max-width: 900px) {
  .nav {
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .nav-cta {
    margin-left: auto;
  }
}

@media (max-width: 720px) {
  .nav {
    gap: 16px;
  }

  .nav-links {
    gap: 12px;
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero {
    padding: 60px 0 40px;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .preview-screen {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .nav-links {
    flex-direction: column;
    align-items: center;
  }

  .hero-card {
    padding: 20px;
  }

  .preview-footer {
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .cta-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .preview-footer {
    flex-direction: column;
    gap: 6px;
  }
}

/* ========== Subscribe page — modern, pro layout ========== */
.subscribe-page {
  min-height: 60vh;
}

.subscribe-section {
  padding: 60px 0 80px;
  position: relative;
}

.subscribe-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  max-width: 900px;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.subscribe-container {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
}

.subscribe-header {
  text-align: center;
  margin-bottom: 48px;
}

.subscribe-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(0, 212, 255, 0.12);
  border: 1px solid rgba(0, 212, 255, 0.25);
}

.subscribe-title {
  font-size: clamp(32px, 4.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--text);
  line-height: 1.15;
}

.subscribe-subtitle {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto;
}

/* App on TV presentation block — text left, images right */
.subscribe-app-presentation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 56px;
  padding: 36px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 768px) {
  .subscribe-app-presentation {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 40px;
    padding: 28px 0;
  }

  .subscribe-app-presentation__media {
    order: -1;
  }
}

.subscribe-app-presentation__content {
  max-width: 480px;
}

.subscribe-app-presentation__title {
  font-size: clamp(22px, 2.8vw, 28px);
  font-weight: 700;
  margin: 0 0 14px;
  color: var(--text);
  letter-spacing: -0.02em;
}

.subscribe-app-presentation__text {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.subscribe-app-presentation__media {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

.subscribe-app-presentation__img {
  width: 100%;
  max-width: 520px;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  object-fit: contain;
}

@media (min-width: 769px) {
  .subscribe-app-presentation__media {
    justify-content: flex-end;
  }

  .subscribe-app-presentation__img {
    max-width: 560px;
  }
}

.subscribe-plans-heading {
  margin-bottom: 28px;
}

.subscribe-plans-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  letter-spacing: -0.02em;
}

.subscribe-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: stretch;
}

@media (max-width: 640px) {
  .subscribe-grid {
    grid-template-columns: 1fr;
  }
}

.subscribe-card {
  position: relative;
  border-radius: 24px;
  padding: 32px 28px;
  background: linear-gradient(165deg, rgba(38, 48, 78, 0.85) 0%, rgba(26, 33, 55, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.subscribe-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.subscribe-card--featured {
  border-color: rgba(0, 212, 255, 0.2);
  background: linear-gradient(165deg, rgba(38, 55, 85, 0.9) 0%, rgba(26, 40, 65, 0.95) 100%);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25), 0 0 40px rgba(0, 212, 255, 0.06);
}

.subscribe-card--featured:hover {
  border-color: rgba(0, 212, 255, 0.35);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.3), 0 0 50px rgba(0, 212, 255, 0.1);
}

.subscribe-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0b1320;
  background: linear-gradient(135deg, var(--accent) 0%, #00cc6a 100%);
  padding: 6px 16px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(0, 255, 136, 0.35);
  white-space: nowrap;
}

.subscribe-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 200px;
}

.subscribe-card-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--text);
}

.subscribe-card-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 28px;
  flex: 1;
}

.subscribe-btn-el {
  width: 100%;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  font-family: inherit;
  margin-top: auto;
}

.subscribe-btn-el:hover:not(:disabled) {
  transform: translateY(-2px);
}

.subscribe-btn-el:disabled {
  cursor: not-allowed;
  opacity: 0.8;
}

.subscribe-btn-el.subscribe-btn {
  color: #001018;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  box-shadow: 0 8px 24px rgba(0, 212, 255, 0.3);
}

.subscribe-btn-el.subscribe-btn:hover:not(:disabled) {
  box-shadow: 0 12px 28px rgba(0, 212, 255, 0.4);
}

.subscribe-btn-el.subscribe-btn--featured {
  background: linear-gradient(135deg, var(--primary) 0%, #00e5ff 100%);
  box-shadow: 0 8px 24px rgba(0, 212, 255, 0.35);
}

.subscribe-btn-el.subscribe-btn--featured:hover:not(:disabled) {
  box-shadow: 0 12px 32px rgba(0, 212, 255, 0.45);
}

.subscribe-error {
  display: none;
  margin-top: 24px;
  padding: 16px 20px;
  font-size: 15px;
  color: #ff6b6b;
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid rgba(255, 107, 107, 0.25);
  border-radius: 12px;
  text-align: center;
}

/* Pricing & Features */
.subscribe-card-price {
  font-size: 42px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.subscribe-card-price span {
  font-size: 16px;
  color: var(--muted);
  font-weight: 500;
}

.subscribe-features {
  list-style: none;
  margin: 24px 0 32px;
  padding: 0;
  display: grid;
  gap: 12px;
}

.subscribe-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--muted);
}

.subscribe-features li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 800;
}

.payment-methods {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.payment-methods p {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.payment-icons {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.payment-icons img {
  height: 22px;
  width: auto;
  opacity: 0.7;
  filter: invert(1);
  transition: all 0.3s ease;
}

.payment-icons img:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* Success Page Enhancements */
.success-icon {
  width: 80px;
  height: 80px;
  background: rgba(0, 255, 136, 0.1);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--accent);
  font-size: 40px;
  animation: scaleUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scaleUp {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.license-container {
  position: relative;
  margin: 32px 0;
}

.btn-copy {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-copy:hover {
  background: var(--primary);
  color: #001018;
}

.success-steps {
  display: grid;
  gap: 20px;
  text-align: left;
  margin-top: 40px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  border: 1px solid var(--border);
}

.success-step {
  display: flex;
  gap: 16px;
}

.step-num {
  width: 28px;
  height: 28px;
  background: var(--primary);
  color: #001018;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}

/* ========== Live Scores — Pro/Modern Layout ========== */
.scores-section {
  padding: 60px 0 100px;
}

.scores-container {
  max-width: 900px;
  margin: 0 auto;
}

.scores-header {
  text-align: center;
  margin-bottom: 48px;
}

.scores-filters {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 32px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.filter-btn {
  padding: 8px 18px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.filter-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

.filter-btn.active {
  background: var(--primary);
  color: #001018;
  border-color: var(--primary);
}

/* Date Switcher */
.date-switcher {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
  overflow-x: auto;
  padding-bottom: 12px;
  -webkit-overflow-scrolling: touch;
}

.date-btn {
  padding: 10px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
}

.date-btn .date-label {
  font-size: 10px;
  text-transform: uppercase;
  margin-bottom: 2px;
  opacity: 0.7;
}

.date-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.date-btn.active {
  background: var(--bg-2);
  color: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 212, 255, 0.1);
}

.scores-grid {
  display: grid;
  gap: 12px;
}

.league-group {
  margin-bottom: 12px;
}

.league-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.league-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.match-card {
  background: linear-gradient(165deg, rgba(38, 48, 78, 0.6) 0%, rgba(26, 33, 55, 0.85) 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px 16px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.match-card:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.match-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: transparent;
  transition: background 0.3s ease;
}

.match-card.live::before {
  background: var(--accent);
}

.team {
  display: flex;
  align-items: center;
  gap: 10px;
}

.team.home { justify-content: flex-end; text-align: right; }
.team.away { justify-content: flex-start; text-align: left; }

.team-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
}

.team-logo {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.match-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 80px;
}

.score-display {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.score-divider {
  color: var(--muted);
  font-weight: 400;
  opacity: 0.5;
}

.match-status {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
}

.match-status.live {
  background: rgba(0, 255, 136, 0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 4px;
}

.live-dot {
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 1.5s infinite;
}

.match-time {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
}

.no-matches {
  text-align: center;
  padding: 40px 20px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  border: 1px dashed var(--border);
}

@media (max-width: 640px) {
  .match-card {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px;
  }

  .team.home { flex-direction: row-reverse; text-align: left; justify-content: flex-start; }
  .match-center { order: -1; flex-direction: row; justify-content: space-between; min-width: 0; width: 100%; }
  .score-display { font-size: 16px; }
  .team-name { font-size: 13px; }
}
