:root {
  color-scheme: dark;
  --bg: #050a12;
  --panel: rgba(8, 20, 38, 0.82);
  --panel-2: rgba(6, 15, 29, 0.95);
  --line: rgba(124, 166, 222, 0.22);
  --text: #f7f9fc;
  --muted: #9caac0;
  --blue: #2f6bff;
  --cyan: #39d9ff;
  --green: #29c783;
  --red: #ff5c77;
  --max: 430px;
  font-family:
    Inter, "SF Pro Display", "PingFang SC", "Microsoft YaHei", system-ui,
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 82% 10%, rgba(28, 89, 255, 0.18), transparent 25rem),
    radial-gradient(circle at 20% 42%, rgba(0, 174, 255, 0.08), transparent 22rem),
    var(--bg);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(61, 123, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61, 123, 255, 0.09) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, #000, transparent 70%);
}

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

button {
  font: inherit;
}

.page {
  position: relative;
  width: min(100%, var(--max));
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(3, 9, 18, 0.35), rgba(3, 8, 15, 0.85));
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.7);
}

.container {
  width: calc(100% - 36px);
  margin-inline: auto;
}

.nav {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand-logo {
  display: block;
  width: 205px;
  max-width: 65vw;
  height: auto;
}

.menu-button {
  display: grid;
  width: 40px;
  height: 40px;
  padding: 8px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  place-content: center;
  gap: 5px;
}

.menu-button span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 99px;
  background: white;
}

.hero {
  position: relative;
  z-index: 1;
  padding: 38px 0 24px;
}

.globe {
  position: absolute;
  top: -20px;
  right: -130px;
  z-index: -1;
  width: 310px;
  aspect-ratio: 1;
  border: 1px solid rgba(43, 111, 255, 0.32);
  border-radius: 50%;
  opacity: 0.82;
  background:
    radial-gradient(circle at 36% 35%, #65b4ff 0 2px, transparent 3px),
    radial-gradient(circle at 64% 23%, #65b4ff 0 2px, transparent 3px),
    radial-gradient(circle at 45% 62%, #65b4ff 0 2px, transparent 3px),
    radial-gradient(circle at 72% 60%, #65b4ff 0 2px, transparent 3px),
    repeating-radial-gradient(circle, transparent 0 20px, rgba(47, 107, 255, 0.2) 21px 22px),
    repeating-linear-gradient(60deg, transparent 0 30px, rgba(47, 107, 255, 0.18) 31px 32px);
  box-shadow:
    inset 0 0 50px rgba(0, 80, 255, 0.22),
    0 0 60px rgba(0, 80, 255, 0.14);
}

.eyebrow {
  margin: 0 0 14px;
  color: #4a8cff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 335px;
  margin: 0;
  font-size: clamp(45px, 13vw, 60px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero h1 span {
  color: #3171ff;
}

.hero-copy {
  max-width: 350px;
  margin: 18px 0 20px;
  color: #bdc8d9;
  font-size: 17px;
  line-height: 1.55;
}

.primary-cta {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid #4e8cff;
  border-radius: 12px;
  color: white;
  background: linear-gradient(100deg, #0b54ff, #2478ff);
  box-shadow: 0 12px 30px rgba(21, 92, 255, 0.28);
  font-size: 20px;
  font-weight: 800;
  transition: transform 160ms ease, filter 160ms ease;
}

.primary-cta:hover,
.primary-cta:focus-visible {
  filter: brightness(1.12);
  transform: translateY(-2px);
}

.arrow {
  font-size: 29px;
  font-weight: 400;
  line-height: 1;
}

.affiliate-line {
  margin: 13px 0 0;
  color: #5590ff;
  font-size: 14px;
  text-align: center;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 20px;
  color: #b4bfd0;
  font-size: 13px;
}

.trust-row span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.trust-row b {
  color: #2f79ff;
  font-size: 17px;
}

.section {
  margin-top: 14px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 15px;
  background: linear-gradient(155deg, rgba(11, 26, 48, 0.92), rgba(4, 13, 26, 0.92));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
}

.featured {
  padding: 17px;
}

.market-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.coin {
  display: grid;
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: white;
  background: linear-gradient(145deg, #ffb12f, #f47a00);
  box-shadow: 0 7px 20px rgba(255, 145, 0, 0.22);
  font-family: Georgia, serif;
  font-size: 31px;
  font-weight: 800;
  place-items: center;
}

.market-header h2 {
  flex: 1;
  margin: 0;
  font-size: 19px;
  line-height: 1.2;
}

.live {
  padding: 9px 10px;
  border: 1px solid rgba(64, 125, 255, 0.48);
  border-radius: 9px;
  color: #4486ff;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.live::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 5px;
  border-radius: 50%;
  background: #2770ff;
  content: "";
  box-shadow: 0 0 8px #2770ff;
}

.probability {
  display: grid;
  grid-template-columns: 88px 1fr 88px;
  align-items: end;
  gap: 10px;
  margin-top: 20px;
}

.outcome {
  display: grid;
  min-height: 105px;
  align-content: center;
  border: 1px solid;
  border-radius: 11px;
  text-align: center;
}

.outcome strong {
  font-size: 38px;
}

.outcome span {
  margin-top: 4px;
  font-size: 17px;
  font-weight: 800;
}

.outcome.yes {
  border-color: rgba(41, 199, 131, 0.75);
  color: var(--green);
  background: linear-gradient(145deg, rgba(20, 114, 79, 0.55), rgba(0, 37, 34, 0.6));
}

.outcome.no {
  border-color: rgba(255, 92, 119, 0.72);
  color: var(--red);
  background: linear-gradient(145deg, rgba(119, 32, 59, 0.58), rgba(48, 15, 34, 0.7));
}

.chart {
  position: relative;
  height: 92px;
  border-bottom: 1px solid rgba(59, 111, 194, 0.32);
  background:
    linear-gradient(rgba(55, 101, 173, 0.17) 1px, transparent 1px);
  background-size: 100% 23px;
}

.chart svg {
  position: absolute;
  inset: 8px 0 0;
  width: 100%;
  height: 75px;
  overflow: visible;
}

.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 17px 0;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.stat {
  text-align: center;
}

.stat + .stat {
  border-left: 1px solid var(--line);
}

.stat strong,
.stat span {
  display: block;
}

.stat strong {
  font-size: 18px;
}

.stat span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.trade-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.trade-actions a {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
}

.buy-yes {
  background: linear-gradient(135deg, #12b96f, #29ce8a);
}

.buy-no {
  background: linear-gradient(135deg, #ff3d60, #ff5c77);
}

.section-card {
  padding: 16px;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 9px;
}

.section-heading h2 {
  margin: 0;
  font-size: 19px;
}

.section-heading a {
  color: #4083ff;
  font-size: 13px;
}

.market-row {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 66px;
  border-top: 1px solid var(--line);
}

.market-icon {
  display: grid;
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: linear-gradient(145deg, rgba(97, 48, 180, 0.65), rgba(29, 26, 68, 0.9));
  font-size: 20px;
  place-items: center;
}

.market-name {
  display: block;
  font-size: 14px;
}

.market-meta {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.market-chance {
  color: var(--green);
  font-size: 16px;
  font-weight: 800;
}

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

.step {
  position: relative;
  min-height: 125px;
  padding: 19px 7px 10px;
  border: 1px solid var(--line);
  border-radius: 11px;
  text-align: center;
}

.step-number {
  position: absolute;
  top: -10px;
  left: -5px;
  display: grid;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: #2268ee;
  font-size: 13px;
  font-weight: 800;
  place-items: center;
}

.step-icon {
  display: block;
  margin-bottom: 10px;
  color: #3e83ff;
  font-size: 34px;
}

.step p {
  margin: 0;
  font-size: 12px;
  line-height: 1.35;
}

.final-card {
  position: relative;
  padding: 23px 17px;
  overflow: hidden;
  text-align: center;
}

.final-card::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    radial-gradient(circle at 15% 45%, rgba(36, 109, 255, 0.35), transparent 28%),
    linear-gradient(120deg, transparent 55%, rgba(39, 100, 255, 0.2));
}

.final-card > * {
  position: relative;
}

.final-card h2 {
  margin: 0 0 13px;
  font-size: 24px;
  line-height: 1.05;
}

.final-card h2 span {
  color: #3477ff;
}

.outline-cta {
  display: inline-flex;
  min-height: 39px;
  padding: 0 25px;
  align-items: center;
  justify-content: center;
  border: 1px solid #3279ff;
  border-radius: 8px;
  color: #4b87ff;
  font-size: 14px;
  font-weight: 700;
}

.disclaimer {
  padding: 22px 20px 95px;
  color: #687991;
  font-size: 10px;
  line-height: 1.55;
  text-align: center;
}

.sticky-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 50;
  width: min(calc(100% - 24px), calc(var(--max) - 24px));
  min-height: 58px;
  margin: 0 auto 10px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.language-switch {
  position: fixed;
  top: 84px;
  right: max(10px, calc((100vw - var(--max)) / 2 + 10px));
  z-index: 40;
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #a9bbd6;
  background: rgba(4, 13, 26, 0.88);
  font-size: 11px;
  backdrop-filter: blur(10px);
}

@media (min-width: 700px) {
  body {
    padding: 30px 0;
  }

  .page {
    min-height: calc(100vh - 60px);
    border: 1px solid rgba(75, 124, 201, 0.18);
    border-radius: 24px;
  }

  .sticky-cta {
    bottom: 22px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .globe {
    animation: float 7s ease-in-out infinite;
  }

  @keyframes float {
    0%,
    100% {
      transform: translateY(0) rotate(0);
    }
    50% {
      transform: translateY(8px) rotate(2deg);
    }
  }
}
