:root {
  --ink: #10141f;
  --paper: #f4f7f6;
  --muted: #6a7282;
  --grass: #0fa05f;
  --lime: #92e06c;
  --gold: #d5b75e;
  --red: #e14c68;
  --blue: #2f7dd3;
  --line: rgba(16, 20, 31, 0.14);
  --shadow: 0 18px 46px rgba(2, 9, 20, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: #fbf2df;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
  cursor: pointer;
}

#stadiumCanvas {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 12% 10%, rgba(213, 183, 94, 0.34), transparent 24%),
    radial-gradient(circle at 84% 8%, rgba(47, 125, 211, 0.24), transparent 25%),
    linear-gradient(135deg, #071218 0%, #12382d 36%, #0ea868 37%, #096742 62%, #06231d 100%);
}

.ball-fx {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.fx-ball {
  position: absolute;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, #fff 0 28%, #e8ecef 29% 54%, #10141f 55% 62%, #fff 63%);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.3);
}

.fx-ball.main {
  width: 44px;
  height: 44px;
  left: 18%;
  top: 48%;
  animation: footballShot 5.8s ease-in-out infinite;
}

.fx-ball.small {
  width: 14px;
  height: 14px;
  opacity: 0.48;
  animation: footballFloat 7s ease-in-out infinite;
}

.fx-ball.one {
  left: 12%;
  top: 38%;
}

.fx-ball.two {
  left: 43%;
  top: 57%;
  animation-delay: -2.6s;
}

.fx-trail {
  position: absolute;
  left: 18%;
  top: 50%;
  width: 220px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0));
  transform-origin: left center;
  animation: footballTrail 5.8s ease-in-out infinite;
}

@keyframes footballShot {
  0% {
    transform: translate3d(0, 0, 0) scale(0.75) rotate(0deg);
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  48% {
    transform: translate3d(28vw, -8vh, 0) scale(1) rotate(260deg);
    opacity: 0.95;
  }
  78% {
    transform: translate3d(52vw, 10vh, 0) scale(0.82) rotate(520deg);
    opacity: 0.55;
  }
  100% {
    transform: translate3d(60vw, 18vh, 0) scale(0.65) rotate(700deg);
    opacity: 0;
  }
}

@keyframes footballTrail {
  0%,
  100% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(-14deg) scaleX(0.2);
  }
  20%,
  55% {
    opacity: 0.65;
    transform: translate3d(12vw, -4vh, 0) rotate(-14deg) scaleX(1);
  }
  78% {
    opacity: 0.25;
    transform: translate3d(36vw, 5vh, 0) rotate(14deg) scaleX(0.7);
  }
}

@keyframes footballFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-18px) rotate(180deg);
  }
}

body::before {
  content: none;
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.94), transparent 78%);
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  width: min(1180px, calc(100% - 28px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: white;
}

.brand,
nav a {
  color: inherit;
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 950;
}

.brand-mark {
  width: 38px;
  height: 38px;
  position: relative;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #10141f 0 12%, transparent 13%),
    radial-gradient(circle at 30% 32%, #10141f 0 9%, transparent 10%),
    radial-gradient(circle at 70% 32%, #10141f 0 9%, transparent 10%),
    radial-gradient(circle at 34% 72%, #10141f 0 8%, transparent 9%),
    radial-gradient(circle at 70% 72%, #10141f 0 8%, transparent 9%),
    #f8faf7;
  color: transparent;
  box-shadow:
    0 0 0 4px rgba(255, 255, 255, 0.12),
    0 0 0 8px rgba(213, 183, 94, 0.18);
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  border: 2px solid rgba(16, 20, 31, 0.82);
  opacity: 0.65;
}

nav {
  display: flex;
  gap: 8px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(7, 16, 22, 0.44);
  backdrop-filter: blur(16px);
}

nav a {
  min-height: 34px;
  padding: 8px 13px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 850;
}

nav a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

main {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
}

.hero {
  min-height: calc(92vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 500px);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  padding: 30px 0 58px;
  color: white;
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  max-width: 820px;
  font-size: clamp(2.7rem, 5.7vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.9rem, 4.4vw, 3.8rem);
  line-height: 1.06;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.65;
}

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

.primary-action,
.secondary-action {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 950;
  text-decoration: none;
}

.primary-action {
  background: #e03f59;
  color: white;
  box-shadow: 0 14px 28px rgba(224, 63, 89, 0.22);
}

.secondary-action {
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  backdrop-filter: blur(14px);
}

.primary-action:hover,
.secondary-action:hover {
  transform: translateY(-1px);
}

.countdown {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 0;
}

.trust-row span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(146, 224, 108, 0.22);
  border-radius: 999px;
  padding: 0 10px;
  background: rgba(146, 224, 108, 0.08);
  color: rgba(232, 246, 220, 0.86);
  font-size: 0.8rem;
  font-weight: 900;
}

.countdown div {
  width: 108px;
  min-height: 76px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.countdown strong {
  display: block;
  font-size: 1.8rem;
  line-height: 1;
}

.countdown span {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 850;
}

.ticket,
.join-panel {
  border: 1px solid rgba(214, 190, 126, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(19, 33, 34, 0.98), rgba(10, 18, 24, 0.98)),
    #10181d;
  color: #f3efe3;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.3);
}

.ticket {
  position: relative;
  overflow: hidden;
  padding: 26px;
  outline: 1px solid rgba(255, 255, 255, 0.08);
  outline-offset: -6px;
}

.ticket::before {
  content: "";
  position: absolute;
  inset: 12px 12px auto auto;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(214, 190, 126, 0.14);
  background:
    linear-gradient(135deg, rgba(214, 190, 126, 0.16), rgba(15, 160, 95, 0.08)),
    rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.ticket::after {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 4px solid rgba(214, 190, 126, 0.72);
  pointer-events: none;
}

.ticket-top,
.match-line,
.pick-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.ticket-top {
  margin: 4px 0 24px;
  color: rgba(243, 239, 227, 0.62);
  font-weight: 900;
}

.ticket-top strong {
  color: #d6be7e;
  font-size: 2rem;
}

.match-line {
  margin-bottom: 20px;
  color: #f3efe3;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  font-weight: 950;
  line-height: 1;
}

.versus {
  min-width: 42px;
  min-height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(243, 239, 227, 0.1);
  color: #f3efe3;
  font-size: 0.78rem;
}

.pick-box {
  margin-bottom: 18px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(243, 239, 227, 0.08);
  color: #f3efe3;
}

.pick-box span {
  color: rgba(243, 239, 227, 0.56);
  font-weight: 850;
}

.pick-box strong {
  color: #9bd58c;
  font-size: 1.35rem;
}

.score-box {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding: 16px;
  border: 1px solid rgba(243, 239, 227, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.score-box span {
  color: rgba(243, 239, 227, 0.58);
  font-weight: 900;
}

.score-box strong {
  color: #d6be7e;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.meter {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.meter span {
  display: block;
  width: 87%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #0f9b66, #6fb56a, #d6be7e);
  transition: width 0.35s ease;
}

.ticket p {
  margin: 20px 0 14px;
  color: rgba(243, 239, 227, 0.66);
  line-height: 1.7;
}

.source-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 12px;
}

.source-tags span {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 9px;
  background: rgba(255, 255, 255, 0.075);
  color: rgba(243, 239, 227, 0.66);
  font-size: 0.76rem;
  font-weight: 900;
}

.match-dashboard {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 12px;
}

.dash-item {
  min-height: 74px;
  padding: 12px;
  border: 1px solid rgba(243, 239, 227, 0.1);
  border-radius: 8px;
  background: rgba(155, 213, 140, 0.08);
}

.dash-item span {
  display: block;
  margin-bottom: 8px;
  color: rgba(243, 239, 227, 0.56);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.dash-item strong {
  display: block;
  color: rgba(220, 238, 213, 0.74);
  font-size: 1.05rem;
  font-weight: 950;
  line-height: 1.1;
}

.model-note {
  margin: 0 0 18px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(243, 239, 227, 0.66);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.55;
}

.full {
  width: 100%;
  box-shadow: none;
}

.telegram-mini-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 10px;
  border-radius: 8px;
  color: #b7f28a;
  font-size: 0.9rem;
  font-weight: 950;
  text-decoration: none;
  background: rgba(146, 224, 108, 0.08);
}

.match-screen {
  isolation: isolate;
  overflow: visible;
  width: min(100%, 500px);
  padding: 0 0 34px;
  border: 0;
  border-radius: 0;
  outline: 0;
  background: transparent;
  box-shadow: none;
}

.match-screen::before,
.match-screen::after {
  content: none;
}

.tv-face {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 108px;
  gap: 14px;
  padding: 18px;
  border: 6px solid #141b1e;
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 16%),
    linear-gradient(180deg, #344143, #151d20 58%, #0c1114);
  box-shadow:
    inset 0 0 0 3px rgba(255, 255, 255, 0.08),
    inset 0 -14px 22px rgba(0, 0, 0, 0.34),
    0 24px 54px rgba(0, 0, 0, 0.45);
}

.tv-face::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  pointer-events: none;
}

.screen-content {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  padding: 24px 24px 20px;
  border: 10px solid #0a0f12;
  border-radius: 34px / 46px;
  background:
    radial-gradient(circle at 50% 52%, rgba(157, 210, 162, 0.14), transparent 50%),
    linear-gradient(135deg, rgba(227, 210, 154, 0.2), rgba(19, 66, 57, 0.64) 46%, rgba(7, 18, 23, 0.9)),
    #10181d;
  color: #f3efe3;
  box-shadow:
    inset 0 0 32px rgba(0, 0, 0, 0.78),
    inset 0 0 0 2px rgba(255, 255, 255, 0.08);
}

.screen-content::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.2), transparent 24%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.045) 0 1px, rgba(0, 0, 0, 0.08) 1px 4px);
  mix-blend-mode: screen;
  opacity: 0.46;
  pointer-events: none;
}

.screen-content > * {
  position: relative;
  z-index: 1;
}

.screen-content .ticket-top {
  margin: 0 0 16px;
  color: rgba(243, 239, 227, 0.72);
  font-size: 0.84rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.screen-content .ticket-top strong {
  min-width: auto;
  color: #e4cd83;
  font-size: 1.65rem;
  text-align: right;
  text-shadow: 0 0 14px rgba(228, 205, 131, 0.26);
}

.screen-content .match-line {
  align-items: center;
  margin-bottom: 16px;
  color: white;
  font-size: clamp(1.18rem, 2.3vw, 1.78rem);
  line-height: 1.05;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.screen-content .versus {
  min-width: 34px;
  min-height: 34px;
  background: rgba(7, 16, 22, 0.64);
  color: #f3efe3;
}

.screen-content .pick-box {
  margin-bottom: 12px;
  padding: 13px 14px;
  background: rgba(7, 16, 22, 0.66);
}

.screen-content .pick-box span {
  color: rgba(243, 239, 227, 0.62);
  font-size: 0.78rem;
}

.screen-content .pick-box strong {
  color: #b7f28a;
  font-size: 1.08rem;
  line-height: 1.18;
}

.screen-content .score-box {
  min-height: 58px;
  margin-bottom: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.09);
}

.screen-content .score-box span {
  color: rgba(243, 239, 227, 0.62);
  font-size: 0.78rem;
}

.screen-content .score-box strong {
  color: #e4cd83;
  font-size: clamp(1.8rem, 3.6vw, 2.45rem);
}

.screen-content .meter {
  height: 8px;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.14);
}

.screen-content .match-dashboard {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin: 0;
}

.screen-content .dash-item {
  min-height: 52px;
  padding: 9px 10px;
  border: 1px solid rgba(243, 239, 227, 0.1);
  background: rgba(7, 16, 22, 0.46);
}

.screen-content .dash-item span {
  margin-bottom: 5px;
  font-size: 0.62rem;
}

.screen-content .dash-item strong {
  color: rgba(243, 239, 227, 0.84);
  font-size: 0.86rem;
}

.tv-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 8px 10px 12px;
  border-left: 2px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(255, 255, 255, 0.03));
}

.tv-knob {
  width: 56px;
  height: 56px;
  display: block;
  border: 5px solid #0b1012;
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 44%, rgba(255, 255, 255, 0.58) 45% 52%, transparent 53%),
    radial-gradient(circle at 35% 35%, #c8d0cc, #485255 46%, #111719 70%);
  box-shadow:
    inset -7px -7px 12px rgba(0, 0, 0, 0.48),
    inset 5px 5px 10px rgba(255, 255, 255, 0.18);
}

.tv-knob.small {
  width: 48px;
  height: 48px;
}

.speaker-slots {
  width: 74px;
  height: 112px;
  display: block;
  margin-top: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: repeating-linear-gradient(0deg, #9aa39d 0 5px, #151d20 5px 10px);
}

.power-dot {
  width: 16px;
  height: 16px;
  display: block;
  border: 3px solid #090d0f;
  border-radius: 50%;
  background: radial-gradient(circle, #d6be7e 0 24%, #0f1517 26%);
}

.screen-stand {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 17px;
  height: 16px;
  border-radius: 0 0 8px 8px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(6, 9, 10, 0.92));
  pointer-events: none;
}

.brand em {
  color: #55f164;
  font-style: normal;
}

.site-header {
  width: min(1260px, calc(100% - 32px));
  min-height: 84px;
  border-bottom: 1px solid rgba(85, 241, 100, 0.08);
  display: grid;
  grid-template-columns: auto 1fr auto;
}

nav {
  justify-self: center;
  gap: clamp(18px, 4vw, 48px);
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
}

nav a {
  padding: 8px 4px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 700;
}

nav a:first-child,
nav a:hover {
  background: transparent;
  color: #55f164;
}

.header-telegram {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 6px;
  padding: 0 16px;
  background: linear-gradient(135deg, #55f164, #39df52);
  color: #041113;
  font-size: 0.94rem;
  font-weight: 750;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(48, 217, 75, 0.22);
}

main {
  width: min(1260px, calc(100% - 32px));
}

.hero {
  position: relative;
  min-height: calc(100vh - 84px);
  grid-template-columns: minmax(0, 0.9fr) minmax(560px, 0.98fr);
  align-content: center;
  gap: clamp(38px, 6vw, 86px);
  padding: 48px 0 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 -8vw auto 50%;
  height: 78%;
  z-index: -1;
  background: linear-gradient(125deg, transparent 0 28%, rgba(26, 238, 95, 0.62) 28% 100%);
  filter: blur(0.2px);
  opacity: 0.82;
  pointer-events: none;
}

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

.hero .eyebrow {
  margin-bottom: 20px;
  color: #55f164;
  font-size: 0.94rem;
  letter-spacing: 0.11em;
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: clamp(3.8rem, 6.3vw, 5.45rem);
  line-height: 1.02;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.42);
}

.accent-line {
  color: #55f164;
}

.hero-lead {
  max-width: 430px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.35;
}

.accuracy-block {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0 0 26px;
  color: white;
}

.accuracy-ring {
  width: 96px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  grid-template-columns: min-content min-content;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(4, 17, 19, 0.98) 0 58%, transparent 59%),
    conic-gradient(#55f164 0 84%, rgba(85, 241, 100, 0.16) 84% 100%);
  box-shadow: 0 0 0 1px rgba(85, 241, 100, 0.24), 0 14px 34px rgba(0, 0, 0, 0.28);
}

.accuracy-ring strong {
  color: #55f164;
  font-size: 2rem;
  line-height: 1;
}

.accuracy-ring span {
  align-self: center;
  color: #55f164;
  font-weight: 950;
}

.accuracy-block > div:last-child {
  display: grid;
  gap: 6px;
}

.accuracy-block > div:last-child strong {
  font-size: 1.05rem;
}

.accuracy-block > div:last-child span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.hero-actions {
  margin-bottom: 20px;
}

.primary-action {
  min-height: 58px;
  min-width: 330px;
  background: linear-gradient(135deg, #4df25e, #30d94b);
  color: #041113;
  font-size: 1.06rem;
  box-shadow: 0 18px 34px rgba(48, 217, 75, 0.26);
}

.telegram-icon {
  background: rgba(4, 17, 19, 0.14);
  color: #041113;
}

.trust-row {
  gap: clamp(14px, 3vw, 34px);
}

.trust-row span {
  gap: 8px;
  border: 0;
  background: transparent;
  color: #66ff75;
  font-size: 0.92rem;
  font-weight: 700;
}

.trust-row span::before {
  content: "✓";
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  border: 1px solid #55f164;
  border-radius: 50%;
  font-size: 0.72rem;
}

.match-screen {
  width: min(100%, 600px);
  justify-self: end;
  padding: 0 0 54px;
}

.monitor-panel {
  position: relative;
  padding: 10px;
  border: 7px solid #080f11;
  border-radius: 13px;
  background: linear-gradient(180deg, #1a292c, #071011);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.14),
    0 28px 64px rgba(0, 0, 0, 0.48);
}

.match-screen .screen-content {
  min-height: 356px;
  padding: 30px 32px 22px;
  border: 1px solid rgba(85, 241, 100, 0.1);
  border-radius: 8px;
  background:
    radial-gradient(circle at 80% 6%, rgba(85, 241, 100, 0.11), transparent 26%),
    linear-gradient(145deg, rgba(8, 29, 25, 0.96), rgba(2, 13, 15, 0.98));
  box-shadow: inset 0 0 44px rgba(0, 0, 0, 0.72);
}

.match-screen .screen-content::before {
  opacity: 0.2;
}

.confidence-badge {
  position: absolute;
  top: 30px;
  right: 34px;
  z-index: 2;
  border-radius: 8px;
  padding: 8px 14px;
  background: rgba(85, 241, 100, 0.12);
  color: #8dff8f;
  font-size: 0.88rem;
  font-weight: 850;
}

.match-screen .ticket-top {
  justify-content: flex-start;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
}

.match-screen .ticket-top::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #55f164;
}

.match-screen .ticket-top strong {
  display: none;
}

.match-screen .match-line {
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 48px);
  margin-bottom: 28px;
}

.team-card {
  display: grid;
  justify-items: center;
  gap: 10px;
  min-width: 130px;
  color: white;
  font-size: 1.2rem;
}

.flag-img {
  width: 118px;
  height: 68px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.26);
}

.flag-mexico {
  background:
    linear-gradient(90deg, #008b4f 0 33%, #f7f7ef 33% 66%, #c9152b 66% 100%);
}

.flag-mexico::after {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle, #b78b2b 0 34%, #0d7149 35% 56%, transparent 57%);
}

.flag-south-africa {
  background:
    linear-gradient(146deg, transparent 0 35%, #f7d417 35% 40%, #007a4d 40% 55%, #fff 55% 60%, transparent 60%),
    linear-gradient(34deg, #000 0 30%, #f7d417 30% 35%, #007a4d 35% 49%, #fff 49% 54%, transparent 54%),
    linear-gradient(180deg, #de3831 0 50%, #002395 50% 100%);
}

.match-screen .versus {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(4, 17, 19, 0.62);
  font-size: 1rem;
}

.match-screen .pick-box {
  justify-content: center;
  gap: 10px;
  margin: 0 auto 20px;
  padding: 0;
  background: transparent;
  text-transform: uppercase;
}

.match-screen .pick-box span {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.78rem;
}

.match-screen .pick-box strong {
  color: #55f164;
  font-size: 1rem;
}

.match-screen .match-dashboard {
  grid-template-columns: 1.45fr repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.match-screen .dash-item {
  min-height: 92px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 16px 12px;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.035);
}

.match-screen .dash-item span {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
  text-transform: none;
}

.match-screen .dash-item strong {
  color: white;
  font-size: 1.3rem;
  text-align: center;
}

.match-screen .dash-item:first-child strong {
  color: #55f164;
  font-size: 2.25rem;
}

.match-screen .dash-item small {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.72rem;
}

.screen-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 14px;
  color: #55f164;
  font-size: 0.7rem;
  text-transform: uppercase;
}

.screen-meta strong {
  color: rgba(255, 255, 255, 0.88);
  text-transform: none;
}

.monitor-stand {
  position: absolute;
  left: 50%;
  bottom: 12px;
  width: 56%;
  height: 46px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #111b1d, #020606);
  clip-path: polygon(42% 0, 58% 0, 66% 100%, 34% 100%);
}

.monitor-stand::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 120%;
  height: 14px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #071011;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.38);
}

.hero-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  margin-top: 8px;
  border: 1px solid rgba(85, 241, 100, 0.14);
  border-radius: 10px;
  background: rgba(7, 23, 21, 0.72);
  backdrop-filter: blur(18px);
}

.hero-stats div {
  min-height: 100px;
  display: grid;
  grid-template-columns: 54px 1fr;
  align-content: center;
  column-gap: 16px;
  padding: 18px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stats div:last-child {
  border-right: 0;
}

.stat-icon {
  grid-row: 1 / span 2;
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(85, 241, 100, 0.12);
  color: #55f164;
  font-weight: 950;
}

.hero-stats strong {
  color: white;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  line-height: 1.08;
}

.hero-stats div > span:last-child {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.96rem;
}

.hero-why {
  grid-column: 1 / -1;
  display: grid;
  justify-items: center;
  gap: 12px;
  margin: 26px 0 0;
  color: white;
  text-align: center;
}

.hero-why h2 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.1;
}

.hero-why > span {
  width: 36px;
  height: 2px;
  background: #55f164;
}

.telegram-action {
  gap: 9px;
}

.telegram-icon {
  width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.ticker {
  overflow: hidden;
  margin: -18px 0 28px;
  border-block: 1px solid rgba(255, 255, 255, 0.18);
  color: white;
}

.intel-strip {
  margin-bottom: 72px;
  color: white;
}

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

.source-grid article {
  min-height: 220px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.source-grid span {
  display: block;
  margin-bottom: 10px;
  color: #d6be7e;
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.source-grid strong {
  display: block;
  margin-bottom: 14px;
  color: #9bd58c;
  font-size: 1rem;
  line-height: 1.25;
}

.source-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.68;
}

.source-grid .source-value {
  margin-bottom: 14px;
  color: white;
  font-size: 1.22rem;
  font-weight: 950;
  line-height: 1.28;
}

.source-grid a,
.news-item a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  border: 1px solid rgba(146, 224, 108, 0.36);
  border-radius: 8px;
  padding: 0 12px;
  background: rgba(146, 224, 108, 0.1);
  color: #b7f28a;
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
}

.source-grid a::after,
.news-item a::after {
  content: "↗";
  margin-left: 7px;
  font-size: 0.9rem;
}

.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
}

.news-list {
  display: grid;
  gap: 14px;
}

.news-item,
.social-panel {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(9, 18, 26, 0.58);
  backdrop-filter: blur(18px);
}

.news-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
}

.news-meta span,
.news-meta strong {
  min-height: 25px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 8px;
  font-size: 0.74rem;
  font-weight: 950;
}

.news-meta span {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.72);
}

.news-meta strong {
  background: rgba(146, 224, 108, 0.14);
  color: var(--lime);
}

.news-item h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  line-height: 1.34;
}

.news-item p,
.social-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.72;
}

.social-heading span {
  display: block;
  margin-bottom: 12px;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.social-heading strong {
  display: block;
  margin-bottom: 12px;
  color: white;
  font-size: 1.8rem;
  line-height: 1;
}

.x-embed-shell {
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.18);
}

.x-placeholder {
  min-height: 420px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 22px;
  text-align: center;
}

.x-placeholder strong {
  color: white;
  font-size: 1.35rem;
  line-height: 1.15;
}

.x-placeholder p {
  max-width: 260px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.64);
}

.ticker-track {
  width: max-content;
  display: flex;
  gap: 38px;
  padding: 16px 0;
  animation: ticker 22s linear infinite;
}

.ticker span {
  font-size: 0.92rem;
  font-weight: 950;
  color: rgba(255, 255, 255, 0.78);
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.section,
.simple-section,
.split-section,
.join-section {
  margin-bottom: 84px;
  color: white;
}

.simple-section {
  padding-top: 8px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-heading p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

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

.fixtures-grid.compact .fixture-card {
  min-height: 0;
}

.match-prediction-section {
  margin-bottom: 84px;
  color: white;
}

.match-spotlight {
  padding: 22px;
  border: 1px solid rgba(214, 190, 126, 0.2);
  border-radius: 8px;
  background: rgba(9, 18, 26, 0.58);
  backdrop-filter: blur(18px);
}

.teams-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 86px minmax(0, 1fr);
  gap: 12px;
  margin-bottom: 14px;
}

.team-flag-card,
.kickoff-card,
.direction-card,
.signal-dashboard > div {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.team-flag-card {
  min-height: 154px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
}

.big-flag {
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 1;
}

.team-flag-card strong {
  font-size: 1.35rem;
}

.kickoff-card {
  min-height: 154px;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 0;
  text-align: center;
  border-color: rgba(146, 224, 108, 0.28);
  background: rgba(146, 224, 108, 0.08);
}

.kickoff-card span,
.direction-card span,
.signal-dashboard span {
  color: #d6be7e;
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.kickoff-card strong {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(7, 16, 22, 0.58);
  color: white;
  font-size: 1.05rem;
  font-weight: 950;
  line-height: 1.2;
}

.kickoff-card small,
.signal-dashboard small {
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.4;
}

.direction-card {
  margin-bottom: 14px;
  padding: 18px;
}

.direction-card strong {
  display: block;
  margin: 10px 0 8px;
  color: #b7f28a;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  line-height: 1.08;
}

.direction-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 850;
}

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

.signal-dashboard > div {
  min-height: 132px;
  padding: 16px;
}

.signal-dashboard strong {
  display: block;
  margin: 10px 0;
  color: white;
  font-size: 1.35rem;
}

.progress-bar {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
}

.progress-bar span {
  display: block;
  width: 64%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #0f9b66, #b7f28a);
}

.form-dots {
  letter-spacing: 0;
}

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

.upcoming-match-card {
  min-height: 280px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(9, 18, 26, 0.58);
  color: white;
  backdrop-filter: blur(18px);
}

.upcoming-teams {
  display: flex;
  align-items: center;
  gap: 8px;
}

.upcoming-teams span,
.upcoming-teams strong {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 900;
}

.upcoming-teams span {
  flex: 1 1 0;
  min-width: 0;
  white-space: nowrap;
  font-size: clamp(0.82rem, 1.2vw, 1rem);
}

.upcoming-teams b {
  flex: 0 0 auto;
  font-size: 1.15rem;
}

.upcoming-teams strong {
  flex: 0 0 38px;
  width: 38px;
  min-height: 38px;
  justify-content: center;
  border-radius: 50%;
  padding: 0;
  background: rgba(146, 224, 108, 0.12);
  color: #b7f28a;
  font-size: 0.76rem;
}

.upcoming-pick span {
  display: block;
  margin-bottom: 8px;
  color: #d6be7e;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.upcoming-pick strong {
  display: block;
  margin-bottom: 8px;
  color: #b7f28a;
  font-size: 1.22rem;
  line-height: 1.18;
}

.upcoming-pick small {
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.45;
}

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

.live-data-row a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(146, 224, 108, 0.28);
  border-radius: 999px;
  padding: 0 10px;
  background: rgba(146, 224, 108, 0.08);
  color: #b7f28a;
  font-size: 0.78rem;
  font-weight: 850;
  text-decoration: none;
}

.ranking-section {
  margin-bottom: 84px;
  color: white;
}

.ranking-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.ranking-card {
  min-height: 104px;
  display: grid;
  grid-template-columns: 52px 54px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(9, 18, 26, 0.58);
  backdrop-filter: blur(18px);
}

.ranking-card.champion {
  grid-column: 1 / -1;
  min-height: 124px;
  border-color: rgba(214, 190, 126, 0.42);
  background:
    linear-gradient(135deg, rgba(214, 190, 126, 0.16), rgba(9, 18, 26, 0.72)),
    rgba(9, 18, 26, 0.72);
}

.rank-number {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(214, 190, 126, 0.16);
  color: #d6be7e;
  font-weight: 950;
}

.flag {
  font-size: 2.15rem;
  line-height: 1;
}

.ranking-card strong {
  display: block;
  margin-bottom: 6px;
  color: white;
  font-size: 1.28rem;
}

.ranking-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.45;
}

.title-odds,
.trend {
  min-width: 58px;
  min-height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  font-weight: 950;
}

.trend.up {
  background: rgba(146, 224, 108, 0.12);
  color: #b7f28a;
}

.trend.down {
  background: rgba(224, 63, 89, 0.14);
  color: #ff8ea0;
}

.trend.flat {
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.72);
}

.dark-lock a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 12px;
  background: rgba(224, 63, 89, 0.9);
  color: white;
  font-weight: 950;
  text-decoration: none;
}

.ranking-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
}

.ranking-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 850;
}

.share-button {
  min-width: 190px;
}

.track-record-section {
  margin-bottom: 84px;
  color: white;
}

.record-grid {
  display: grid;
  grid-template-columns: 0.8fr 0.8fr 1.2fr;
  gap: 14px;
}

.record-hero,
.record-strip-card {
  min-height: 220px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(9, 18, 26, 0.62);
  backdrop-filter: blur(18px);
}

.record-hero span,
.record-strip-card > span {
  display: block;
  margin-bottom: 12px;
  color: #d6be7e;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.record-hero strong {
  display: block;
  margin-bottom: 10px;
  color: #b7f28a;
  font-size: clamp(3.5rem, 9vw, 6.2rem);
  line-height: 0.9;
}

.record-hero p,
.record-strip-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.6;
}

.result-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 18px;
}

.result-strip b {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: white;
  font-size: 1.05rem;
}

.result-strip .win {
  background: #0f9b66;
}

.result-strip .loss {
  background: #e03f59;
}

.fixture-card {
  min-height: 340px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(9, 18, 26, 0.62);
  backdrop-filter: blur(18px);
}

.fixture-card header,
.fixture-score,
.fixture-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.fixture-card header {
  margin-bottom: 16px;
}

.fixture-card header span,
.fixture-card header strong {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 10px;
  font-size: 0.78rem;
  font-weight: 950;
}

.fixture-card header span {
  background: var(--gold);
  color: var(--ink);
}

.fixture-card header strong {
  background: rgba(184, 255, 77, 0.16);
  color: var(--lime);
}

.fixture-date {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.64);
  font-weight: 850;
}

.fixture-card h3 {
  margin: 0 0 18px;
  font-size: 1.65rem;
  line-height: 1.14;
}

.fixture-card h3 span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 1rem;
  text-transform: uppercase;
}

.fixture-score {
  margin-bottom: 14px;
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.fixture-score span {
  color: rgba(255, 255, 255, 0.66);
  font-weight: 850;
}

.fixture-score strong {
  color: var(--gold);
  font-size: 2rem;
}

.fixture-card p {
  min-height: 92px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.fixture-meta {
  flex-wrap: wrap;
  justify-content: flex-start;
}

.fixture-meta span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 9px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 850;
}

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

.prediction-card {
  min-height: 270px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(9, 18, 26, 0.58);
  backdrop-filter: blur(18px);
}

.prediction-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}

.tag {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 10px;
  background: rgba(184, 255, 77, 0.16);
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 950;
}

.prediction-card h3 {
  margin: 0 0 16px;
  font-size: 1.42rem;
  line-height: 1.18;
}

.prediction-card p {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.card-score {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.card-score span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
  font-weight: 850;
}

.card-score strong {
  color: var(--gold);
  font-size: 1.7rem;
}

.prediction-card .card-model {
  min-height: 56px;
  margin-bottom: 16px;
  color: rgba(184, 255, 77, 0.78);
  font-size: 0.9rem;
}

.mini-bar {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.mini-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--red), var(--gold));
}

.locked-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.35fr);
  gap: 22px;
  align-items: start;
  margin-bottom: 84px;
  padding: 30px;
  border: 1px solid rgba(214, 190, 126, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(214, 190, 126, 0.12), rgba(9, 18, 26, 0.82)),
    rgba(9, 18, 26, 0.7);
  color: white;
  backdrop-filter: blur(18px);
}

.locked-copy p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.72;
}

.locked-grid {
  display: grid;
  gap: 10px;
}

.locked-grid article {
  position: relative;
  min-height: 118px;
  padding: 16px 16px 16px 72px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.locked-grid article::after {
  content: "LOCKED";
  position: absolute;
  right: 14px;
  top: 14px;
  color: rgba(214, 190, 126, 0.62);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.locked-grid span {
  position: absolute;
  left: 16px;
  top: 16px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(214, 190, 126, 0.16);
  color: #d6be7e;
  font-weight: 950;
}

.locked-grid strong {
  display: block;
  margin: 0 78px 8px 0;
  color: white;
  font-size: 1.08rem;
}

.locked-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.58;
}

.locked-action {
  grid-column: 2;
  width: fit-content;
  min-width: 230px;
}

.fan-game-section {
  margin-bottom: 84px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(9, 18, 26, 0.42);
  color: white;
  backdrop-filter: blur(18px);
}

.fan-game-section .section-heading {
  max-width: 760px;
}

.fan-game-section h2 {
  font-size: clamp(2rem, 4.2vw, 4rem);
}

.fan-game-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.fan-game-grid article {
  min-height: 230px;
  padding: 20px;
  border: 1px solid rgba(214, 190, 126, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(19, 33, 34, 0.82), rgba(9, 18, 26, 0.72)),
    rgba(9, 18, 26, 0.58);
  backdrop-filter: blur(18px);
}

.fan-game-grid article > span {
  display: block;
  margin-bottom: 12px;
  color: #d6be7e;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.fan-game-grid article > strong {
  display: block;
  margin-bottom: 14px;
  color: white;
  font-size: 1.45rem;
  line-height: 1.12;
}

.fan-game-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.68;
}

.leaderboard-card ol,
.mini-ranking {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.leaderboard-card li,
.mini-ranking li,
.rules-list div {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 8px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.08);
}

.rules-list {
  display: grid;
  gap: 9px;
}

.leaderboard-card li span,
.mini-ranking li span,
.rules-list span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 900;
}

.leaderboard-card li strong,
.mini-ranking li strong,
.rules-list strong {
  color: #b7f28a;
}

.stat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.stat-pills span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.8rem;
  font-weight: 850;
}

.fan-game-action {
  width: fit-content;
  min-width: 250px;
}

.game-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 4px;
}

.split-section,
.join-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  align-items: center;
  gap: 28px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(9, 18, 26, 0.58);
  backdrop-filter: blur(18px);
}

.model-section {
  margin-bottom: 84px;
  color: white;
}

.model-section .section-heading p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

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

.model-grid article {
  min-height: 210px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(7, 16, 22, 0.36);
  backdrop-filter: blur(18px);
}

.model-grid span {
  display: block;
  margin-bottom: 14px;
  color: var(--lime);
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.model-grid strong {
  display: block;
  margin-bottom: 12px;
  color: white;
  font-size: 1.34rem;
  line-height: 1.22;
}

.model-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}

.split-section p,
.join-copy p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

.signal-list {
  display: grid;
  gap: 10px;
}

.signal-row {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 8px;
  background: rgba(7, 16, 22, 0.36);
}

.signal-row span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 850;
}

.signal-row strong {
  color: var(--gold);
  font-size: 2rem;
}

.join-panel {
  padding: 18px;
}

.join-bullets {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.join-bullets li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 850;
}

.join-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #b7f28a;
  box-shadow: 0 0 0 4px rgba(183, 242, 138, 0.1);
}

.code-pill {
  min-height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  border: 1px dashed rgba(16, 20, 31, 0.22);
  border-radius: 8px;
  background: #fff;
  font-size: 1.35rem;
  font-weight: 950;
}

.telegram-link {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #229ed9;
  color: white;
  font-weight: 950;
  text-decoration: none;
}

.microcopy {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

footer {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  padding: 26px 0 34px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

.sticky-telegram {
  position: fixed;
  left: 50%;
  bottom: 16px;
  z-index: 20;
  width: min(520px, calc(100% - 28px));
  min-height: 58px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 10px 14px;
  background: rgba(224, 63, 89, 0.96);
  color: white;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
  text-decoration: none;
  backdrop-filter: blur(18px);
}

.sticky-telegram span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  font-weight: 850;
}

.sticky-telegram strong {
  font-size: 1rem;
  font-weight: 950;
}

@media (max-width: 860px) {
  .site-header {
    position: relative;
    min-height: 66px;
  }

  nav {
    display: none;
  }

  .hero,
  .split-section,
  .join-section,
  .locked-section {
    grid-template-columns: 1fr;
  }

  .source-grid,
  .news-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 28px 0 64px;
  }

  .ticket {
    max-width: 520px;
  }

  .match-screen {
    justify-self: center;
  }

  .prediction-grid {
    grid-template-columns: 1fr;
  }

  .fixtures-grid {
    grid-template-columns: 1fr;
  }

  .ranking-board {
    grid-template-columns: 1fr;
  }

  .teams-strip,
  .signal-dashboard,
  .record-grid {
    grid-template-columns: 1fr;
  }

  .ranking-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .model-grid {
    grid-template-columns: 1fr;
  }

  .fan-game-grid {
    grid-template-columns: 1fr;
  }

  .locked-action {
    grid-column: 1;
  }

  .sticky-telegram {
    display: flex;
  }

  .ticker {
    margin-top: -34px;
  }
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 34px;
  }

  .hero::before {
    inset: 18% -18vw auto 24%;
    height: 52%;
  }

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

  .match-screen {
    justify-self: center;
  }

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

  .hero-stats div:nth-child(2) {
    border-right: 0;
  }

  .hero-stats div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 540px) {
  main,
  .site-header,
  footer {
    width: min(100% - 20px, 1180px);
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 3.9rem);
  }

  .hero-actions,
  .countdown,
  footer {
    flex-direction: column;
  }

  .primary-action,
  .secondary-action,
  .countdown div {
    width: 100%;
  }

  .match-line {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .versus {
    min-width: 34px;
    min-height: 34px;
  }

  .split-section,
  .join-section,
  .locked-section,
  .fan-game-section {
    padding: 22px;
  }

  .trust-row {
    gap: 7px;
  }

  .trust-row span {
    flex: 1 1 auto;
    justify-content: center;
  }

  .ticket {
    padding: 22px;
  }

  .match-screen {
    padding: 0 0 18px;
  }

  .monitor-panel {
    padding: 9px;
    border-width: 4px;
  }

  .match-screen .screen-content {
    min-height: 310px;
    padding: 22px 16px 16px;
  }

  .confidence-badge {
    position: static;
    width: fit-content;
    margin: -8px 0 16px;
  }

  .match-screen .match-line {
    flex-direction: column;
    gap: 14px;
  }

  .team-card {
    min-width: 0;
  }

  .flag-img {
    width: 96px;
    height: 54px;
    font-size: 3rem;
  }

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

  .screen-meta {
    flex-direction: column;
  }

  .monitor-stand {
    display: none;
  }

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

  .hero-stats div,
  .hero-stats div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero-stats div:last-child {
    border-bottom: 0;
  }

  .ticket-top {
    margin-bottom: 20px;
  }

  .ticket-top strong {
    font-size: 1.72rem;
  }

  .pick-box,
  .score-box {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .score-box strong {
    font-size: 2.3rem;
  }

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

  .source-grid article,
  .fixture-card,
  .ranking-card,
  .prediction-card,
  .model-grid article,
  .fan-game-grid article,
  .news-item,
  .social-panel,
  .locked-grid article {
    min-height: 0;
    padding: 18px;
  }

  .locked-grid article {
    padding-left: 18px;
    padding-top: 62px;
  }

  .locked-grid article::after {
    top: 20px;
  }

  .locked-grid strong {
    margin-right: 0;
  }

  .locked-action {
    width: 100%;
  }

  .ranking-card,
  .ranking-card.champion {
    grid-template-columns: 44px 42px minmax(0, 1fr);
  }

  .ranking-card .title-odds,
  .ranking-card .trend,
  .ranking-card.dark-lock a {
    grid-column: 3;
    justify-self: start;
    margin-top: 8px;
  }

  .flag {
    font-size: 1.7rem;
  }

  .fan-game-action {
    width: 100%;
  }

  .game-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .source-grid strong,
  .fixture-card h3,
  .prediction-card h3,
  .model-grid strong,
  .news-item h3 {
    font-size: 1.22rem;
    line-height: 1.28;
  }

  .fixture-card p,
  .prediction-card .card-model {
    min-height: 0;
  }

  .fixture-meta {
    gap: 7px;
  }

  .x-embed-shell,
  .x-placeholder {
    min-height: 340px;
  }

  body {
    padding-bottom: 88px;
  }
}
