@font-face {
  font-family: "Chicago";
  src: url("https://dapp.timesoul.com/assets/Chicago%20Regular-01befabd.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-top: #0a120d;
  --bg-bottom: #0d1610;
  --text: #f5f3e8;
  --text-soft: rgba(245, 243, 232, 0.86);
  --text-mute: rgba(245, 243, 232, 0.64);
  --lime: #d8ff5a;
  --lime-strong: #c8fa3b;
  --lime-soft: rgba(216, 255, 90, 0.12);
  --lime-line: rgba(216, 255, 90, 0.28);
  --blue-soft: rgba(57, 96, 255, 0.16);
  --panel-soft: rgba(16, 25, 18, 0.22);
  --panel-green: linear-gradient(135deg, rgba(52, 71, 27, 0.34), rgba(12, 18, 14, 0.06));
  --panel-blue: linear-gradient(135deg, rgba(27, 44, 82, 0.34), rgba(12, 18, 14, 0.06));
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.20);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: min(1320px, calc(100vw - 52px));
  --h-title: clamp(2.3rem, 4.2vw, 4.3rem);
  --h-sub: clamp(1.3rem, 2vw, 1.85rem);
  --copy: clamp(1.08rem, 1.18vw, 1.2rem);
  --cta: clamp(1.28rem, 1.48vw, 1.5rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body,
html, body,
h1, h2, h3, h4, h5, h6,
p, a, span, div,
button, input, textarea, select {
  font-family: "Chicago", monospace !important;
}
body {
  margin: 0;
  background:
    radial-gradient(circle at 6% 36%, rgba(57, 96, 255, 0.28), transparent 0 18%),
    radial-gradient(circle at 89% 16%, rgba(180, 150, 56, 0.18), transparent 0 17%),
    radial-gradient(circle at 92% 20%, rgba(133, 161, 42, 0.22), transparent 0 19%),
    radial-gradient(circle at 84% 13%, rgba(165, 110, 58, 0.12), transparent 0 12%),
    linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bottom) 100%);
  color: var(--text);
  letter-spacing: 0.02em;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.ambient {
  position: fixed;
  border-radius: 50%;
  filter: blur(96px);
  pointer-events: none;
  z-index: 0;
}
.ambient-left {
  width: 34vw; height: 34vw; left: -12vw; top: 22vh;
  background: rgba(46, 93, 255, 0.68);
  opacity: 0.34;
}
.ambient-right {
  width: 30vw; height: 30vw; right: -6vw; top: 6vh;
  background: rgba(183, 151, 53, 0.48);
  opacity: 0.28;
}
.ambient-right-2 {
  width: 34vw; height: 34vw; right: -10vw; top: 10vh;
  background: rgba(118, 160, 42, 0.46);
  opacity: 0.24;
}
.scanlines {
  position: fixed; inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.022) 0 1px, transparent 1px 5px);
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

.container {
  width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.site-header {
  position: static;
  padding: 18px 0 0;
  z-index: 4;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: inline-flex;
  align-items: center;
}
.brand-logo {
  height: 34px;
  width: auto;
  display: block;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background: linear-gradient(180deg, var(--lime) 0%, var(--lime-strong) 100%);
  color: #0b1109;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 34px rgba(201, 250, 54, 0.20);
  font-weight: 400;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(201, 250, 54, 0.28);
}
.cta-header {
  min-height: 42px;
  padding: 0 24px;
  font-size: clamp(0.8rem, 0.86vw, 0.9rem);
  border-radius: 16px;
}
.cta-main {
  min-height: 84px;
  min-width: 432px;
  padding: 0 62px;
  font-size: var(--cta);
}

.section {
  position: relative;
  padding: 116px 0 96px;
}
.hero {
  min-height: calc(100svh - 68px);
  display: flex;
  align-items: center;
  padding-top: 28px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(360px, 0.86fr);
  gap: 56px;
  align-items: center;
}
.eyebrow {
  color: var(--lime);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  margin-bottom: 16px;
}
.hero-title,
.section-title {
  margin: 0;
  font-weight: 400;
  line-height: 0.98;
  text-transform: uppercase;
  max-width: none;
}
.hero-title {
  font-size: var(--h-title);
  width: min(100%, 80%);
}
.hero-description {
  margin-top: 28px;
  display: grid;
  gap: 16px;
  max-width: none;
  width: 100%;
}
.hero-line {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: var(--h-sub);
  line-height: 1.1;
  white-space: nowrap;
}
.hero-bullet {
  color: var(--lime);
  font-size: 1.18em;
  flex: 0 0 auto;
  transform: translateY(-0.02em);
}
.hero-copy .cta-main { margin-top: 38px; }

.hero-note {
  margin-top: 12px;
  font-size: clamp(0.82rem, 0.9vw, 0.92rem);
  color: var(--text);
  text-align: center;
  width: min(100%, 432px);
}

.hero-visual {
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image {
  width: min(100%, 620px);
  height: auto;
  display: block;
  filter: drop-shadow(0 22px 48px rgba(0,0,0,0.36));
}

.section-head {
  width: min(100%, 80%);
  margin-bottom: 42px;
}
.section-title {
  font-size: var(--h-title);
}
.section-subtitle {
  margin: 16px 0 0;
  font-size: var(--h-sub);
  line-height: 1.26;
  color: var(--text);
  text-align: left;
}
.title-accent {
  color: var(--lime);
}

.points-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 38px;
  align-items: center;
}
.points-facts {
  display: grid;
  gap: 28px;
  align-content: center;
  align-self: center;
}
.fact-row {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px 0 22px;
  border-bottom: 1px solid rgba(216, 255, 90, 0.14);
}
.fact-row-highlight {
  margin-top: 10px;
  padding-top: 10px;
  border-bottom-color: rgba(216, 255, 90, 0.24);
}
.fact-icon-image {
  width: 72px;
  height: 72px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 14px 24px rgba(0,0,0,0.24));
}
.fact-text {
  font-size: clamp(1.08rem, 1.22vw, 1.22rem);
  line-height: 1.28;
  color: var(--text);
  text-align: left;
}
.pets-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.pet-card {
  border-radius: 30px;
  overflow: visible;
  min-height: 100%;
  box-shadow: none;
  background: transparent;
  border: 0;
}
.pet-card-sugar {
  background: transparent;
  border: 0;
}
.pet-card-personal {
  background: transparent;
  border: 0;
}
.pet-image-wrap {
  aspect-ratio: 1.1;
  display: grid;
  place-items: center;
  padding: 0;
  background: transparent;
}
.pet-image { width: min(100%, 270px); }
.pet-copy {
  padding: 0 24px 24px;
  text-align: center;
}
.pet-copy h3 {
  margin: 0 0 10px;
  font-size: clamp(1.18rem, 1.28vw, 1.32rem);
  font-weight: 400;
  color: var(--lime);
}
.pet-copy p {
  margin: 0;
  color: var(--text-soft);
  font-size: var(--copy);
  line-height: 1.32;
}

.roadmap {
  position: relative;
  display: grid;
  gap: 34px;
  padding-left: 88px;
  margin-top: 6px;
}
.roadmap::before {
  content: "";
  position: absolute;
  left: 38px;
  top: 24px;
  bottom: 24px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(216,255,90,0.86), rgba(113,151,39,0.18));
}
.roadmap-step {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  padding: 12px 0;
}
.roadmap-node {
  width: auto;
  height: auto;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--lime);
  font-size: clamp(2.3rem, 4.2vw, 4.3rem);
  line-height: 0.9;
  box-shadow: none;
  text-shadow: 0 0 18px rgba(216,255,90,0.12);
}
.roadmap-copy {
  position: relative;
  padding: 22px 26px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(18,28,20,0.36), rgba(12,18,14,0.08));
  border: 1px solid rgba(216,255,90,0.14);
}
.roadmap-copy h3 {
  margin: 0 0 12px;
  font-size: clamp(1.28rem, 1.55vw, 1.55rem);
  font-weight: 400;
  color: var(--lime);
}
.roadmap-copy p {
  margin: 0;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.08vw, 1.08rem);
  line-height: 1.45;
}

.prizes-main {
  display: block;
}
.top-prizes-inline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}
.place {
  min-height: 100%;
  padding: 26px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 28px;
  border: 1px solid rgba(216,255,90,0.16);
  background: linear-gradient(180deg, rgba(14, 22, 16, 0.30), rgba(12, 18, 14, 0.08));
  box-shadow: var(--shadow);
}
.place-1 {
  background: linear-gradient(180deg, rgba(74, 66, 18, 0.38), rgba(18, 22, 13, 0.10));
  border-color: rgba(234, 210, 95, 0.26);
}
.place-2 {
  background: linear-gradient(180deg, rgba(44, 48, 55, 0.34), rgba(14, 18, 16, 0.08));
  border-color: rgba(196, 205, 222, 0.20);
}
.place-3 {
  background: linear-gradient(180deg, rgba(79, 48, 24, 0.34), rgba(14, 18, 16, 0.08));
  border-color: rgba(182, 112, 64, 0.22);
}
.place-image {
  width: 132px;
  height: auto;
  margin-bottom: 18px;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,0.22));
}
.place-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.place-label {
  font-size: clamp(1.36rem, 1.52vw, 1.58rem);
  margin-bottom: 10px;
}
.place-text {
  color: var(--text-soft);
  font-size: clamp(1.02rem, 1.1vw, 1.1rem);
  line-height: 1.32;
}
.minor-places {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 96px;
  color: var(--text);
}
.minor-place {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.minor-place-label {
  font-size: clamp(1.36rem, 1.52vw, 1.58rem);
  color: var(--text);
}
.minor-place-text {
  font-size: clamp(1.02rem, 1.1vw, 1.1rem);
  color: var(--text-soft);
  line-height: 1.32;
}
.tournament-line {
  margin-top: 132px;
  display: grid;
  justify-items: center;
  gap: 20px;
  text-align: center;
}
.tournament-days {
  font-size: var(--h-title);
  margin-bottom: 10px;
  color: var(--lime);
  text-transform: uppercase;
  line-height: 0.98;
}
.tournament-dates {
  font-size: var(--h-sub);
  color: var(--text);
}
.countdown {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.count-item {
  min-width: 104px;
  text-align: center;
}
.count-item span {
  display: block;
  font-size: clamp(1.7rem, 2vw, 2rem);
  color: var(--lime);
  margin-bottom: 8px;
}
.count-item small {
  display: block;
  font-size: 0.82rem;
  color: var(--text-mute);
}
.prize-cta {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.faq-item {
  padding: 0 0 20px;
  border-bottom: 1px solid rgba(216,255,90,0.14);
}
.faq-item h3 {
  margin: 0 0 12px;
  font-size: clamp(1.16rem, 1.24vw, 1.24rem);
  font-weight: 400;
  line-height: 1.28;
  color: var(--lime);
}
.faq-item p {
  margin: 0;
  font-size: var(--copy);
  color: var(--text-soft);
  line-height: 1.38;
}

.site-footer {
  padding: 20px 0 42px;
}
.footer-inner {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 36px;
  flex-wrap: wrap;
}
.social-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.social-link-x { padding-top: 2px; }
.social-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;

  font-size: 1rem;
}
.social-label {
  font-size: 0.92rem;
  color: var(--text);
  text-align: left;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: 0.08s; }
.reveal.delay-2 { transition-delay: 0.16s; }
.reveal.delay-3 { transition-delay: 0.24s; }

@media (max-width: 1180px) {
  .hero-grid,
  .points-layout,
  .faq-list {
    grid-template-columns: 1fr;
  }
  .hero-title,
  .section-head,
  .hero-description { width: 100%; }
  .hero-description { max-width: none; }
  .hero-line { white-space: normal; }
  .hero-visual { min-height: 500px; }
  .points-layout { gap: 28px; }
  .top-prizes-inline { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  :root {
    --container: min(100vw - 30px, 1000px);
    --h-title: clamp(1.85rem, 7vw, 2.65rem);
    --h-sub: clamp(1.02rem, 3.5vw, 1.25rem);
    --copy: 0.98rem;
    --cta: 1.16rem;
  }
  .site-header { padding-top: 14px; }
  .hero {
    min-height: auto;
    padding-top: 34px;
  }
  .hero-grid { gap: 34px; }
  .hero-visual {
    min-height: 430px;
    margin-top: 8px;
  }
  .hero-image {
    max-width: 500px;
    margin: 0 auto;
  }
  .cta-main {
    min-width: 360px;
    min-height: 76px;
    padding: 0 44px;
  }
  .faq-list,
  .pets-grid { grid-template-columns: 1fr; }
  .roadmap { padding-left: 62px; gap: 24px; }
  .roadmap::before { left: 27px; }
  .roadmap-step { grid-template-columns: 72px 1fr; gap: 20px; }
  .roadmap-node { font-size: clamp(2rem, 6vw, 2.8rem); }
  .roadmap-copy { padding: 18px 18px 18px 20px; }
  .minor-places {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}

@media (max-width: 560px) {
  .header-inner { gap: 16px; }
  .brand-logo { height: 28px; }
  .cta-header {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.7rem;
    border-radius: 14px;
  }
  .section { padding: 86px 0 72px; }
  .hero { padding-top: 18px; }
  .hero-title { width: 100%; }
  .hero-description { gap: 12px; }
  .hero-line {
    font-size: 1.02rem;
    gap: 12px;
    white-space: normal;
  }
  .cta-main {
    width: 100%;
    min-width: 0;
    min-height: 70px;
    font-size: 1rem;
  }
  .hero-visual {
    min-height: 360px;
    padding-top: 8px;
  }
  .hero-image { width: 100%; max-width: 420px; }
  .section-head { width: 100%; }
  .roadmap { padding-left: 48px; gap: 20px; }
  .roadmap::before { left: 20px; width: 3px; }
  .roadmap-step { grid-template-columns: 56px 1fr; gap: 14px; }
  .roadmap-node { font-size: clamp(1.7rem, 8vw, 2.2rem); }
  .roadmap-copy { padding: 16px 14px 16px 18px; }
  .place { padding: 20px 18px; }
  .place-medal {
    width: 66px;
    height: 66px;
    margin-bottom: 14px;
  }
  .countdown { gap: 8px 32px; }
  .count-item { min-width: calc(6% - 6px); }
  .footer-inner { gap: 28px; }
}

@media (max-width: 860px) {
  .fact-icon-image { width: 64px; height: 64px; }
  .place-image { width: 120px; }
}

@media (max-width: 560px) {
  .fact-row { grid-template-columns: 64px 1fr; gap: 14px; }
  .fact-icon-image { width: 56px; height: 56px; }
  .pet-image { width: min(100%, 220px); }
  .place-image { width: 104px; }
}
