:root {
  --surface: #ffffff;
  --surface-soft: #f6f3f8;
  --text: #17151d;
  --muted: #6f6a78;
  --accent: #ff8a00;
  --accent-hover: #f27e00;
  --accent-2: #2f6dff;
  --border: rgba(34, 27, 51, 0.1);
  --shadow: 0 22px 60px rgba(23, 21, 29, 0.22);
  --radius: 28px;
  --danger-bg: rgba(194, 43, 43, 0.1);
  --danger-text: #9b1f1f;
  --success-bg: rgba(20, 140, 65, 0.11);
  --success-text: #12633c;
  --info-bg: rgba(91, 90, 247, 0.12);
  --info-text: #4746d4;
}

/* Colors */
.primary {
  color: #FF7A00; /* your primary orange */
}
.secondary {
  color: #2563EB; /* your primary orange */
}
.accent {
  color: #4338CA; /* your primary orange */
}
/* Colors shadow */
.primary-text-shadow {
  text-shadow: 0 0 15px rgba(255, 122, 0, 0.58); /* your primary orange */
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  color: var(--text);
  background: #ffffff;
}

/* Home page */
body.home-page {
  padding: 0;
}

body.home-page .landing {
  width: 100%;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 54px;
}

body.home-page .hero {
  color: #fff;
  border-radius: 0;
  background:
    radial-gradient(120% 95% at 50% 50%, rgba(98, 165, 255, 0.3) 0%, rgba(98, 165, 255, 0) 64%),
    linear-gradient(180deg, #031661 0%, #1f50d0 34%, #7ab6ff 70%, #ffffff 100%);
  padding: clamp(18px, 2.4vw, 32px) clamp(16px, 6vw, 90px) clamp(58px, 10vw, 120px);
  min-height: 640px;
  position: relative;
}

body.home-page .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 12px 12px;
  pointer-events: none;
}

body.home-page .topbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  position: relative;
  z-index: 1;
}

body.home-page .topbar h1 {
  margin: 0;
  font-size: clamp(34px, 4vw, 48px);
  letter-spacing: -0.03em;
  color: #EE731C;
}

/* Hero Content */
body.home-page .hero-content {
  margin: clamp(54px, 10vw, 110px) auto 0;
  text-align: center;
  width: min(1000px, 100%);
  position: relative;
  z-index: 1;
}
body.home-page .hero-content .eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}
body.home-page .hero-content h2 {
  color: rgba(243, 243, 243, 0.9);
  margin: 10px 0 0;
  font-size: clamp(58px, 11vw, 120px);
  line-height: 0.9;
  letter-spacing: -0.04em;
}
body.home-page .hero .hero-content .leagues-text {
  background: linear-gradient(90deg, #FF7A00, #FFB266);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
body.home-page .hero-content .hero-copy {
  margin: 18px auto 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(19px, 2.8vw, 31px);
  line-height: 1.22;
  font-weight: 700;
}
/* App Store Button */
body.home-page .hero-content .store-badge {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  margin-bottom: 16px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0px 20px #EE731C;
  transition: transform 0.16s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
body.home-page .hero-content .store-badge img {
  width: min(600px, 100%);
  height: auto;
  display: block;
  object-fit: contain;
}
body.home-page .hero-content .button:hover,
body.home-page .hero-content .store-badge:hover {
  transform: translateY(-1px);
  opacity: 0.97;
}





body.home-page .feature,
body.home-page .faq {
  background: #f2f4fb;
  border: 1px solid #dde4f2;
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow);
  padding: clamp(20px, 3vw, 34px) clamp(16px, 4vw, 48px);
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

body.home-page .feature {
  display: grid;
  grid-template-columns: 1fr minmax(250px, 390px);
  gap: 24px;
  align-items: center;
}

body.home-page .feature h3,
body.home-page .statement h3,
body.home-page .faq h3 {
  margin: 0;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

body.home-page .feature h3 {
  font-size: clamp(32px, 6vw, 70px);
  color: #071f4e;
}

body.home-page .feature h3 span,
body.home-page .faq h3 span {
  color: var(--accent);
}

body.home-page .feature p,
body.home-page .statement p,
body.home-page .faq p {
  color: #334155;
  font-size: clamp(17px, 2.5vw, 33px);
  line-height: 1.4;
  margin: 18px 0 0;
}

body.home-page .image-card {
  min-height: 430px;
  border-radius: 26px;
  background: linear-gradient(180deg, #f9fafb 0%, #edf1f9 100%);
  border: 1px solid #d7e0f3;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  font-size: 26px;
  color: #0f172a;
  font-weight: 800;
}

body.home-page .black-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.2) 33%, rgba(0, 0, 0, 0) 76%);
}

body.home-page .image-card span {
  position: relative;
  z-index: 1;
  color: #fff;
}

body.home-page .statement {
  text-align: center;
  background: #fff;
  border-radius: var(--radius);
  padding: clamp(34px, 6vw, 76px) clamp(16px, 5vw, 120px);
  box-shadow: var(--shadow);
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

body.home-page .statement h3 {
  font-size: clamp(40px, 7.8vw, 88px);
  color: #081f4b;
}

body.home-page .statement h3 span {
  background: linear-gradient(90deg, var(--accent-2) 0%, #66b8ff 58%, #7bcf4d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

body.home-page .faq {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) 1.1fr;
  gap: 24px;
}

body.home-page .faq h3 {
  font-size: clamp(32px, 5.8vw, 68px);
  color: #091f49;
}

body.home-page .faq a {
  color: var(--accent-2);
  text-decoration: none;
  font-weight: 700;
}

body.home-page details {
  border-top: 1px solid #cdd5e1;
  border-bottom: 1px solid #cdd5e1;
  padding: 16px 0;
  align-self: center;
}

body.home-page summary {
  list-style: none;
  font-weight: 700;
  color: #1e293b;
  font-size: clamp(20px, 2.8vw, 36px);
  cursor: pointer;
}

body.home-page summary::-webkit-details-marker {
  display: none;
}

body.home-page details p {
  margin-top: 14px;
  font-size: clamp(16px, 2.3vw, 28px);
}

body.home-page .site-footer {
  width: 100%;
  margin-top: -16px;
  padding: 28px clamp(16px, 6vw, 90px) 34px;
  background: #fff;
  border-top: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 22px;
  flex-wrap: wrap;
}

body.home-page .footer-brand {
  display: grid;
  gap: 6px;
}

body.home-page .footer-brand strong {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1;
  color: #071f4e;
}

body.home-page .footer-brand small {
  font-size: 15px;
  color: #64748b;
}

body.home-page .footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

body.home-page .footer-links a {
  color: #0c2457;
  text-decoration: none;
  font-weight: 700;
  padding: 4px 0;
}

body.home-page .button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  min-height: 52px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.16s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

body.home-page .button.ghost {
  min-height: 48px;
  padding: 0 22px;
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}



@media (max-width: 920px) {
  body.home-page .feature,
  body.home-page .faq {
    grid-template-columns: 1fr;
  }

  body.home-page .image-card {
    min-height: 320px;
  }

  body.home-page .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Legal pages: privacy + terms */
body.privacy-page,
body.terms-page,
body.support-page {
  padding: clamp(18px, 4vw, 40px) 14px;
}

body.privacy-page .page,
body.terms-page .page,
body.support-page .page {
  width: min(920px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

body.privacy-page .hero,
body.terms-page .hero,
body.support-page .hero {
  padding: 6px 10px;
  color: #fff;
}

body.privacy-page .hero h1,
body.terms-page .hero h1,
body.support-page .hero h1 {
  margin: 0;
  font-size: clamp(38px, 8vw, 60px);
  line-height: 0.96;
  letter-spacing: -0.03em;
}

body.privacy-page .hero p,
body.terms-page .hero p,
body.support-page .hero p {
  margin: 12px 0 0;
  font-size: clamp(20px, 4.5vw, 28px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

body.privacy-page .container,
body.terms-page .container,
body.support-page .container {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: clamp(22px, 4vw, 38px);
}

body.privacy-page .meta,
body.terms-page .meta {
  margin-top: 0;
  font-size: 14px;
  color: var(--muted);
}

body.privacy-page h2 {
  margin: 28px 0 10px;
  font-size: clamp(20px, 2.8vw, 24px);
}

body.terms-page h2 {
  margin: 0 0 10px;
  font-size: clamp(22px, 3vw, 28px);
}

body.privacy-page p,
body.privacy-page li,
body.terms-page p,
body.terms-page li {
  color: var(--muted);
  line-height: 1.7;
  font-size: 16px;
}

body.privacy-page ul {
  padding-left: 20px;
}

body.terms-page ul {
  margin-top: 14px;
  padding-left: 20px;
}

body.privacy-page a,
body.terms-page a {
  color: var(--accent-2);
  text-decoration: none;
  font-weight: 600;
}

body.privacy-page .actions,
body.terms-page .actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body.privacy-page .button,
body.terms-page .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 18px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
}

body.privacy-page .button.primary,
body.terms-page .button.primary {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 12px 30px rgba(255, 106, 0, 0.26);
}

body.privacy-page .button.secondary,
body.terms-page .button.secondary {
  color: var(--accent-2);
  background: #fff;
  border-color: rgba(91, 90, 247, 0.28);
}

body.terms-page .note {
  margin-top: 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px 14px;
  background: var(--surface-soft);
  color: #4f4a59;
  font-size: 14px;
  line-height: 1.55;
}

/* Support page */
body.support-page .container p {
  line-height: 1.7;
  color: var(--muted);
  font-size: 17px;
  margin: 0;
}

body.support-page .container p + p {
  margin-top: 12px;
}

body.support-page .container a {
  color: var(--accent-2);
  text-decoration: none;
  font-weight: 700;
}
