:root {
  --bg: #020707;
  --bg-2: #03110c;
  --panel: rgba(10, 23, 20, 0.82);
  --panel-2: rgba(12, 31, 25, 0.68);
  --line: rgba(42, 255, 122, 0.22);
  --line-soft: rgba(255, 255, 255, 0.08);
  --green: #17e86f;
  --green-2: #1aff86;
  --green-3: #0fb85a;
  --text: #f5fff8;
  --muted: #b8c9c1;
  --muted-2: #7f968c;
  --yellow: #ffd53d;
  --orange: #ff8a3d;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 10%, rgba(21, 226, 111, 0.12), transparent 28rem),
    linear-gradient(180deg, #020807 0%, #03110d 42%, #010504 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(2, 7, 7, 0.28), rgba(2, 7, 7, 0.72)),
    radial-gradient(circle at 32% 21%, rgba(255, 255, 210, 0.13), transparent 0.7rem),
    radial-gradient(circle at 47% 18%, rgba(255, 255, 210, 0.12), transparent 0.55rem),
    radial-gradient(circle at 61% 24%, rgba(255, 255, 210, 0.11), transparent 0.65rem),
    linear-gradient(115deg, transparent 0 31%, rgba(36, 255, 130, 0.08) 32%, transparent 39%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.68)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.012) 0 1px, transparent 1px 80px);
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: auto 0 0;
  height: 36vh;
  z-index: -1;
  background:
    linear-gradient(180deg, transparent, rgba(1, 6, 5, 0.94)),
    radial-gradient(ellipse at center bottom, rgba(18, 214, 97, 0.16), transparent 58%);
  pointer-events: none;
}

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

img {
  max-width: 100%;
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(1, 7, 7, 0.88);
  backdrop-filter: blur(18px);
}

.header-content {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

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

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  font-size: 0.88rem;
  font-weight: 800;
}

.main-nav a {
  flex: 0 0 auto;
  color: rgba(245, 255, 248, 0.9);
}

.main-nav a:hover {
  color: var(--green-2);
}

.header-actions {
  display: flex;
  gap: 14px;
  flex: 0 0 auto;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  font-size: 0.95rem;
  line-height: 1;
  white-space: nowrap;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

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

.btn-primary {
  color: #021008;
  background: linear-gradient(135deg, #1fff82, #13d966);
  box-shadow: 0 18px 44px rgba(20, 232, 111, 0.25);
}

.btn-outline {
  color: var(--text);
  border-color: rgba(29, 231, 111, 0.32);
  background: rgba(255,255,255,0.02);
}

.btn-ghost {
  color: var(--text);
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.035);
}

.btn-small {
  min-height: 48px;
  padding-inline: 24px;
}

.btn-large {
  min-height: 58px;
  min-width: 316px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 24px 0 28px;
}

.hero::before,
.champion-hero::before,
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(1, 8, 7, 0.98) 0%, rgba(2, 13, 9, 0.76) 35%, rgba(2, 10, 7, 0.18) 70%, rgba(1, 7, 6, 0.92) 100%),
    radial-gradient(circle at 63% 52%, rgba(39, 255, 132, 0.18), transparent 24rem),
    linear-gradient(180deg, rgba(8, 64, 37, 0.18), rgba(1, 6, 5, 0.82)),
    repeating-linear-gradient(8deg, rgba(255,255,255,0.028) 0 1px, transparent 1px 23px);
}

.hero-grid {
  min-height: 535px;
  display: grid;
  grid-template-columns: minmax(650px, 1.16fr) minmax(300px, 0.84fr);
  align-items: center;
  gap: 18px;
}

.hero .hero-copy {
  max-width: 760px;
}

.hero .phone-stage {
  min-height: 430px;
}

.hero .phone {
  width: 270px;
  min-height: 498px;
  padding: 19px 15px;
  transform-origin: center top;
}

.hero .phone-screen {
  min-height: 450px;
  padding: 26px 14px 16px;
}

.hero .phone-left {
  left: 1%;
  top: 22px;
  transform: scale(0.83) rotate(1deg);
}

.hero .phone-right {
  width: 292px;
  right: -2%;
  top: 0;
  transform: scale(0.83) rotate(8deg);
}

.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 9px 16px;
  border-radius: 999px;
  color: var(--green-2);
  background: rgba(18, 232, 111, 0.12);
  font-size: 0.92rem;
  font-weight: 900;
}

.eyebrow i {
  font-size: 0.86rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1,
.champion-copy h1 {
  max-width: 610px;
  margin-bottom: 18px;
  font-size: clamp(2.65rem, 4.7vw, 4.85rem);
  line-height: 1.02;
  font-weight: 1000;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(2.65rem, 4.25vw, 4.45rem);
}

.hero h1 span,
.champion-copy h1 span,
.section-title h2 span,
.cta-band h2 span {
  color: var(--green);
}

.hero p,
.champion-copy p {
  max-width: 560px;
  margin-bottom: 24px;
  color: #e2eee8;
  font-size: 1.08rem;
  line-height: 1.68;
  font-weight: 650;
}

.hero p strong,
.champion-copy p strong {
  color: var(--green-2);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.avatar-stack {
  display: flex;
  padding-left: 8px;
}

.avatar-stack span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-left: -8px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  color: #07100d;
  background: linear-gradient(135deg, #f4d9c7, #b98165);
  font-size: 0.82rem;
  font-weight: 900;
}

.social-proof strong {
  color: var(--green-2);
}

.phone-stage {
  min-height: 500px;
  position: relative;
  display: grid;
  place-items: center;
}

.phone {
  width: min(270px, 42vw);
  min-height: 498px;
  position: absolute;
  padding: 19px 15px;
  border: 5px solid #111;
  border-radius: 34px;
  background: #050c0a;
  box-shadow: 0 28px 64px rgba(0,0,0,0.7), inset 0 0 0 1px rgba(255,255,255,0.1);
}

.phone::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 82px;
  height: 16px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: #030504;
}

.phone-left {
  left: 4%;
  top: 24px;
  transform: rotate(1deg);
}

.phone-right {
  right: 1%;
  top: 2px;
  transform: rotate(8deg);
}

.phone-screen {
  min-height: 450px;
  display: flex;
  flex-direction: column;
  padding: 26px 14px 16px;
  border-radius: 26px;
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(27, 230, 112, 0.18), transparent 12rem),
    linear-gradient(180deg, #06120f, #020605);
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
}

.mini-logo {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(31, 255, 131, 0.4);
  border-radius: 8px;
  color: var(--green-2);
}

.mini-logo img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(31, 255, 131, 0.28));
}

.phone-title strong {
  display: block;
  font-size: 1rem;
}

.phone-title span {
  color: var(--muted-2);
  font-size: 0.75rem;
}

.tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--muted-2);
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tabs span:first-child {
  color: var(--green-2);
}

.ranking-mini,
.score-card,
.stat-card {
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  background: rgba(255,255,255,0.035);
}

.ranking-mini {
  overflow: hidden;
}

.rank-row {
  display: grid;
  grid-template-columns: 24px 26px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 12px 9px;
  border-bottom: 1px solid rgba(255,255,255,0.055);
  font-size: 0.83rem;
}

.rank-row:last-child {
  border-bottom: 0;
}

.rank-row b {
  color: var(--green-2);
}

.rank-medal {
  color: var(--yellow);
}

.rank-avatar {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #04100a;
  background: #cda58e;
  font-size: 0.72rem;
  font-weight: 900;
}

.phone-button {
  min-height: 49px;
  display: grid;
  place-items: center;
  margin-top: auto;
  border-radius: 8px;
  color: var(--text);
  background: rgba(255,255,255,0.06);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.phone-bottom-nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 3px;
  margin-top: 10px;
  padding: 6px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  background: rgba(11, 17, 15, 0.92);
  box-shadow: 0 12px 26px rgba(0,0,0,0.32);
}

.phone-bottom-nav span {
  min-width: 0;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3px;
  border-radius: 12px;
  color: var(--muted-2);
  font-size: 0.78rem;
}

.phone-bottom-nav span.active {
  color: #021008;
  background: var(--green);
}

.phone-bottom-nav i {
  font-size: 0.9rem;
}

.phone-bottom-nav b {
  max-width: 100%;
  overflow: hidden;
  font-size: 0.46rem;
  line-height: 1;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.match-teams {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin: 22px 0 18px;
}

.crest {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  color: var(--green-2);
  background: rgba(28, 232, 111, 0.11);
  justify-self: center;
}

.crest.alt {
  color: #ff3d54;
  background: rgba(255, 61, 84, 0.12);
}

.score {
  font-size: 2.1rem;
  font-weight: 1000;
}

.phone-right .match-teams .score {
  min-width: max-content;
  white-space: nowrap;
}

.hit {
  width: fit-content;
  margin: 0 auto 20px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #d8ffe8;
  background: rgba(31, 255, 131, 0.12);
  font-size: 0.85rem;
  font-weight: 900;
}

.points {
  margin-bottom: 18px;
  text-align: center;
  color: var(--green-2);
  font-size: 1.65rem;
  font-weight: 1000;
}

.phone-subtitle {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.phone-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}

.stat-card {
  padding: 14px 10px;
}

.stat-card strong {
  display: block;
  font-size: 1.45rem;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.75rem;
}

.feature-strip,
.ranking-panel,
.audience-strip,
.testimonial-card,
.cta-band {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(8, 24, 20, 0.82), rgba(4, 13, 11, 0.72));
  box-shadow: var(--shadow);
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto 36px;
  overflow: hidden;
}

.feature-item {
  min-height: 160px;
  display: grid;
  place-items: center;
  padding: 26px 22px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.09);
}

.feature-item:last-child {
  border-right: 0;
}

.icon-box {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 15px;
  border-radius: 12px;
  color: var(--green-2);
  background: rgba(22, 232, 111, 0.1);
  font-size: 2rem;
  text-shadow: 0 0 24px rgba(22, 232, 111, 0.44);
}

.feature-item h3,
.step h3,
.audience-item h3 {
  margin-bottom: 8px;
  font-size: 1.02rem;
}

.feature-item p,
.step p,
.audience-item p,
.testimonial-card p,
.seo-text p,
.faq details {
  color: var(--muted);
  line-height: 1.58;
}

.section {
  padding: 38px 0;
}

.section-title {
  margin-bottom: 30px;
  text-align: center;
}

.section-title h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 8px;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.15;
  text-transform: uppercase;
}

.section-title h2::before,
.section-title h2::after {
  content: "";
  width: 46px;
  height: 3px;
  border-radius: 99px;
  background: var(--green);
}

.section-title p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.step {
  position: relative;
  text-align: center;
}

.step::after {
  content: "\f061";
  position: absolute;
  top: 48px;
  right: -22px;
  color: var(--green);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.step:last-child::after {
  display: none;
}

.step-number {
  position: absolute;
  top: 0;
  left: calc(50% - 58px);
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #021008;
  background: var(--green);
  font-size: 0.82rem;
  font-weight: 1000;
}

.step .icon-box {
  width: 88px;
  height: 88px;
  margin: 0 auto 18px;
  border-radius: 999px 999px 30px 999px;
  font-size: 2.35rem;
}

.ranking-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr 0.75fr;
  align-items: center;
  gap: 44px;
  padding: 34px 38px;
}

.panel-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--green-2);
  font-size: 0.88rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.panel-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(1.85rem, 3.2vw, 3rem);
  line-height: 1.18;
}

.panel-copy p {
  margin-bottom: 24px;
  color: var(--muted);
  line-height: 1.65;
}

.ranking-table {
  overflow: hidden;
  border-radius: 8px;
}

.ranking-table .rank-row {
  grid-template-columns: 34px 30px 1fr auto;
  min-height: 54px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.045);
}

.ranking-table .rank-row + .rank-row {
  margin-top: 2px;
}

.ranking-table .rank-row:first-child span:first-child {
  background: var(--yellow);
  color: #07100d;
}

.ranking-table .rank-row:nth-child(2) span:first-child {
  background: #dfe4ea;
  color: #07100d;
}

.ranking-table .rank-row:nth-child(3) span:first-child {
  background: var(--orange);
  color: #07100d;
}

.ranking-table .rank-row > span:first-child {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: var(--text);
  background: rgba(255,255,255,0.07);
  font-weight: 900;
}

.trophy {
  min-height: 260px;
  display: grid;
  place-items: center;
  color: rgba(202, 255, 217, 0.8);
  font-size: 11rem;
  text-shadow: 0 0 44px rgba(31, 255, 131, 0.18);
}

.audience-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 26px 30px;
  gap: 22px;
}

.audience-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: start;
}

.audience-item .icon-box {
  width: 54px;
  height: 54px;
  margin: 0;
  font-size: 1.65rem;
}

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

.testimonial-card {
  min-height: 190px;
  padding: 28px 24px;
  border-color: rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.045);
}

.quote-mark {
  color: var(--green);
  font-size: 1.5rem;
}

.testimonial-card p {
  min-height: 72px;
  margin-bottom: 18px;
}

.testimonial-user {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
}

.testimonial-user .rank-avatar {
  width: 48px;
  height: 48px;
  font-size: 1rem;
}

.testimonial-user strong {
  display: block;
}

.testimonial-user span {
  color: var(--muted-2);
  font-size: 0.86rem;
}

.cta-band {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto 180px;
  align-items: center;
  gap: 36px;
  min-height: 245px;
  padding: 40px 44px;
}

.cta-band::before {
  background:
    linear-gradient(90deg, rgba(1, 8, 7, 0.96), rgba(3, 34, 20, 0.72), rgba(1, 8, 7, 0.38)),
    radial-gradient(circle at 76% 62%, rgba(31, 255, 131, 0.18), transparent 18rem),
    repeating-linear-gradient(8deg, rgba(255,255,255,0.028) 0 1px, transparent 1px 23px);
}

.cta-band h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
  text-transform: uppercase;
}

.cta-band p {
  max-width: 520px;
  margin-bottom: 0;
  color: #dbe9e2;
  font-size: 1.08rem;
  line-height: 1.55;
}

.ball {
  width: 138px;
  height: 138px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 48%, #111 0 11%, transparent 12%),
    conic-gradient(from 18deg, #f6f6f6 0 12%, #101010 12% 18%, #f6f6f6 18% 32%, #101010 32% 38%, #f6f6f6 38% 55%, #101010 55% 62%, #f6f6f6 62% 78%, #101010 78% 84%, #f6f6f6 84% 100%);
  box-shadow: 0 20px 40px rgba(0,0,0,0.42);
}

.site-footer {
  padding: 44px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 1fr);
  gap: 46px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  width: 150px;
}

.footer-col h3 {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.footer-col a,
.footer-col span {
  display: block;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: var(--green);
}

.social-links {
  display: flex;
  gap: 18px;
  color: var(--green);
  font-size: 1.15rem;
}

.copyright {
  padding-top: 18px;
  color: var(--muted-2);
  text-align: center;
  font-size: 0.86rem;
}

.champion-hero {
  position: relative;
  overflow: hidden;
  padding: 46px 0 34px;
}

.champion-grid {
  min-height: 460px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(350px, 0.72fr);
  align-items: center;
  gap: 42px;
}

.champion-card {
  position: relative;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(8, 24, 20, 0.9), rgba(3, 10, 9, 0.76));
  box-shadow: var(--shadow);
}

.champion-card h2 {
  margin-bottom: 18px;
  font-size: 1.18rem;
}

.match-card {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  min-height: 76px;
  margin-bottom: 12px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
}

.match-card strong {
  display: block;
  font-size: 0.96rem;
}

.match-card span {
  color: var(--muted-2);
  font-size: 0.78rem;
}

.match-score {
  min-width: 72px;
  text-align: center;
  color: var(--green-2);
  font-size: 1.45rem;
  font-weight: 1000;
}

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

.benefit-card {
  min-height: 230px;
  padding: 28px;
  border: 1px solid rgba(31, 255, 131, 0.16);
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
}

.benefit-card .icon-box {
  margin-bottom: 20px;
}

.benefit-card h3 {
  font-size: 1.25rem;
}

.benefit-card p {
  color: var(--muted);
  line-height: 1.6;
}

.league-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  align-items: center;
  gap: 44px;
}

.invite-box {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(31,255,131,0.18);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(31,255,131,0.06);
  overflow-wrap: anywhere;
}

.seo-text {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 46px;
  align-items: start;
}

.seo-text h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.15;
}

.seo-text a {
  margin-top: 8px;
}

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

.faq details {
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  background: rgba(255,255,255,0.035);
}

.faq summary {
  color: var(--text);
  cursor: pointer;
  font-weight: 900;
}

.faq details p {
  margin: 12px 0 0;
}

.legal-hero {
  padding: 72px 0 34px;
}

.legal-hero .eyebrow {
  margin-bottom: 18px;
}

.legal-hero h1 {
  max-width: 820px;
  margin-bottom: 16px;
  font-size: clamp(2.35rem, 5vw, 4.9rem);
  line-height: 1.05;
}

.legal-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.34fr) minmax(0, 0.66fr);
  gap: 34px;
  align-items: start;
  padding-bottom: 62px;
}

.legal-toc,
.legal-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(8, 24, 20, 0.82), rgba(4, 13, 11, 0.72));
  box-shadow: var(--shadow);
}

.legal-toc {
  position: sticky;
  top: 118px;
  padding: 22px;
}

.legal-toc h2 {
  margin-bottom: 16px;
  font-size: 1rem;
  text-transform: uppercase;
}

.legal-toc a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  color: var(--muted);
  font-weight: 800;
}

.legal-toc a:last-child {
  border-bottom: 0;
}

.legal-toc a:hover {
  color: var(--green);
}

.legal-card {
  padding: clamp(24px, 4vw, 42px);
}

.legal-card section + section {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.legal-card h2 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.72;
}

.legal-card p {
  margin-bottom: 14px;
}

.legal-card ul {
  margin: 0;
  padding-left: 20px;
}

.legal-card li + li {
  margin-top: 8px;
}

.legal-note {
  margin-top: 22px;
  padding: 16px;
  border: 1px solid rgba(31, 255, 131, 0.16);
  border-radius: 8px;
  color: #dfffee;
  background: rgba(31, 255, 131, 0.06);
}

.rules-hero {
  position: relative;
  overflow: hidden;
  padding: 58px 0 34px;
}

.rules-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(1, 8, 7, 0.98), rgba(2, 17, 11, 0.78), rgba(1, 8, 7, 0.95)),
    radial-gradient(circle at 72% 42%, rgba(31, 255, 131, 0.20), transparent 24rem),
    repeating-linear-gradient(8deg, rgba(255,255,255,0.026) 0 1px, transparent 1px 24px);
}

.rules-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.62fr);
  align-items: center;
  gap: 42px;
}

.rules-hero h1 {
  max-width: 780px;
  margin-bottom: 16px;
  font-size: clamp(2.6rem, 5.2vw, 5.1rem);
  line-height: 1.02;
}

.rules-hero h1 span {
  color: var(--green);
}

.rules-hero p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.68;
}

.rules-score-preview,
.rules-panel,
.rules-private-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(8, 24, 20, 0.84), rgba(4, 13, 11, 0.72));
  box-shadow: var(--shadow);
}

.rules-score-preview {
  padding: 24px;
}

.rules-preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.rules-preview-head span,
.rules-section-title span {
  color: var(--green-2);
  font-size: 0.82rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.rules-preview-head strong {
  color: var(--green);
  font-size: 2.6rem;
  line-height: 1;
}

.rules-preview-match {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
}

.rules-preview-match span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted-2);
  font-size: 0.78rem;
  font-weight: 800;
}

.rules-preview-match strong {
  font-size: 1.35rem;
}

.rules-preview-result {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
  color: var(--green-2);
  font-weight: 900;
}

.rules-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.28fr) minmax(0, 0.72fr);
  gap: 30px;
  align-items: start;
  padding: 24px 0 66px;
}

.rules-content {
  display: grid;
  gap: 20px;
}

.rules-panel {
  padding: clamp(22px, 3.4vw, 34px);
}

.rules-section-title {
  margin-bottom: 22px;
}

.rules-section-title h2 {
  margin: 8px 0 8px;
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  line-height: 1.12;
}

.rules-section-title p,
.rules-panel p {
  color: var(--muted);
  line-height: 1.68;
}

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

.rules-score-card {
  min-height: 210px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
}

.rules-score-card.is-featured {
  border-color: rgba(31, 255, 131, 0.34);
  background: linear-gradient(180deg, rgba(31,255,131,0.12), rgba(255,255,255,0.04));
}

.rules-score-card i,
.rules-info-grid i,
.rules-private-card i {
  color: var(--green-2);
  font-size: 1.7rem;
}

.rules-score-card strong {
  display: block;
  margin: 18px 0 10px;
  color: var(--green);
  font-size: 2rem;
  line-height: 1;
}

.rules-score-card h3,
.rules-info-grid h3 {
  margin-bottom: 8px;
}

.rules-score-card p,
.rules-info-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.55;
}

.rules-examples {
  display: grid;
  gap: 10px;
}

.rules-example-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
}

.rules-example-row span {
  color: var(--muted);
  font-weight: 750;
}

.rules-example-row strong {
  min-width: 64px;
  padding: 9px 12px;
  border-radius: 10px;
  color: #04100a;
  background: var(--green);
  text-align: center;
}

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

.rules-info-grid article {
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
}

.rules-ranking-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rules-ranking-list li {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  gap: 14px;
  padding: 15px 16px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
}

.rules-ranking-list strong {
  color: var(--text);
}

.rules-ranking-list span {
  color: var(--muted);
}

.rules-split-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.38fr);
  gap: 20px;
  align-items: center;
}

.rules-private-card {
  min-height: 220px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 22px;
  text-align: center;
}

.rules-private-card strong {
  font-size: 1.25rem;
}

.rules-private-card span {
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 1080px) {
  .header-content {
    min-height: 86px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 14px 0;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .hero-grid,
  .champion-grid,
  .rules-hero-grid,
  .rules-layout,
  .league-panel,
  .seo-text,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
  }

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

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .phone-stage {
    min-height: 520px;
  }

  .phone-left {
    left: 14%;
  }

  .phone-right {
    right: 10%;
  }

  .feature-strip,
  .steps,
  .audience-strip,
  .testimonials,
  .champion-benefits,
  .ranking-panel,
  .footer-grid,
  .cta-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .ranking-panel {
    gap: 24px;
  }

  .trophy {
    min-height: 180px;
    font-size: 8rem;
  }

  .footer-grid {
    text-align: center;
    justify-items: center;
  }

  .footer-col a,
  .footer-col span {
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    position: relative;
  }

  .header-content {
    align-items: stretch;
  }

  .logo {
    justify-content: center;
    width: 100%;
  }

  .logo img {
    width: 132px;
  }

  .header-actions {
    width: 100%;
    justify-content: center;
  }

  .header-actions .btn {
    flex: 1;
    padding-inline: 16px;
  }

  .main-nav {
    justify-content: flex-start;
    font-size: 0.82rem;
  }

  .hero {
    padding-top: 18px;
  }

  .hero h1,
  .champion-copy h1 {
    font-size: clamp(2.25rem, 10.5vw, 3.25rem);
  }

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

  .hero p,
  .champion-copy p {
    font-size: 1rem;
  }

  .btn-large,
  .hero-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .phone-stage {
    min-height: 390px;
    margin: 4px -12px 0;
  }

  .phone {
    width: 210px;
    min-height: 380px;
    padding: 14px 10px;
    border-radius: 28px;
  }

  .phone-screen {
    min-height: 344px;
    padding: 22px 9px 11px;
  }

  .phone-bottom-nav {
    margin-top: 8px;
    padding: 5px;
    border-radius: 14px;
  }

  .phone-bottom-nav span {
    min-height: 34px;
  }

  .phone-bottom-nav i {
    font-size: 0.78rem;
  }

  .phone-bottom-nav b {
    font-size: 0.38rem;
  }

  .phone-left {
    left: 0;
    top: 28px;
  }

  .phone-right {
    right: 0;
    top: 0;
  }

  .rank-row {
    grid-template-columns: 20px 24px 1fr auto;
    gap: 7px;
    padding: 10px 7px;
    font-size: 0.72rem;
  }

  .score {
    font-size: 1.5rem;
  }

  .crest {
    width: 46px;
    height: 46px;
  }

  .feature-strip,
  .steps,
  .ranking-panel,
  .audience-strip,
  .testimonials,
  .cta-band,
  .champion-benefits,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-item {
    min-height: 142px;
    justify-items: center;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.09);
  }

  .feature-item > div {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .feature-item:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 30px 0;
  }

  .section-title h2 {
    gap: 12px;
  }

  .section-title h2::before,
  .section-title h2::after {
    width: 26px;
  }

  .step::after {
    display: none;
  }

  .ranking-panel,
  .champion-card,
  .cta-band {
    padding: 24px 18px;
  }

  .ranking-table .rank-row {
    grid-template-columns: 30px 28px 1fr auto;
    padding: 11px 10px;
  }

  .trophy {
    display: none;
  }

  .audience-item {
    grid-template-columns: 50px 1fr;
  }

  .cta-band {
    gap: 20px;
  }

  .ball {
    width: 104px;
    height: 104px;
    justify-self: center;
  }

  .champion-hero {
    padding-top: 26px;
  }

  .legal-hero {
    padding: 42px 0 22px;
  }

  .rules-hero {
    padding: 36px 0 22px;
  }

  .rules-hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.55rem);
  }

  .rules-layout {
    padding-top: 10px;
    padding-bottom: 40px;
  }

  .rules-score-grid,
  .rules-info-grid,
  .rules-split-panel {
    grid-template-columns: 1fr;
  }

  .rules-score-card {
    min-height: 0;
  }

  .rules-example-row,
  .rules-ranking-list li {
    grid-template-columns: 1fr;
  }

  .legal-card,
  .legal-toc {
    border-radius: 14px;
  }

  .match-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .match-score {
    margin: 0 auto;
  }
}

/* Responsive containment pass - 2026-05-22 */
html,
body {
  max-width: 100%;
}

body {
  overflow-x: clip;
}

@supports not (overflow-x: clip) {
  body {
    overflow-x: hidden;
  }
}

.container,
.site-header,
.header-content,
.hero,
.hero-grid,
.section,
.features-grid,
.steps-grid,
.testimonials,
.cta-band,
.champion-benefits,
.rules-layout,
.rules-score-grid,
.rules-info-grid,
.rules-split-panel,
.footer-grid {
  min-width: 0;
  max-width: 100%;
}

.ranking-panel,
.champion-card,
.legal-card,
.legal-toc,
.match-card,
.audience-item,
.feature-item,
.step {
  min-width: 0;
}

:is(.hero, .section-title, .ranking-panel, .champion-card, .legal-card, .match-card, .audience-item, .feature-item, .step) :is(h1, h2, h3, p, strong) {
  overflow-wrap: anywhere;
}

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

  .header-actions {
    min-width: 0;
  }

  .header-actions .btn {
    min-width: 0;
  }
}
