:root {
  --ink: #121827;
  --muted: #667085;
  --line: #e7eaf0;
  --green: #45bd43;
  --green-dark: #21834c;
  --red: #ef233c;
  --blue: #2779e6;
  --purple: #7657e8;
  --yellow: #f6b51f;
  --surface: #fff;
  --soft: #f7faf8;
  --shadow: 0 18px 50px rgba(18, 24, 39, .08)
}



* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.55
}

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

.container {
  width: min(1160px, calc(100% - 32px));
  margin: auto
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line)
}

.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 900;
  letter-spacing: -.5px
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .1)
}

.brand span {
  font-size: 18px
}

.navlinks {
  display: flex;
  gap: 24px;
  color: #505b6f;
  font-size: 14px;
  font-weight: 700
}

.navlinks a:hover {
  color: var(--green-dark)
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  cursor: pointer;
  padding: 13px 20px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 14px;
  transition: .2s;
  box-shadow: 0 8px 18px rgba(69, 189, 67, .18)
}

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

.btn-primary {
  background: var(--green);
  color: #fff
}

.btn-dark {
  background: var(--ink);
  color: #fff;
  box-shadow: none
}

.btn-outline {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  box-shadow: none
}

.hero {
  padding: 64px 0 36px;
  position: relative;
  overflow: hidden
}

.hero:before {
  content: "";
  position: absolute;
  inset: -160px -100px auto auto;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, #e9f8df 0, rgba(233, 248, 223, 0) 68%);
  pointer-events: none
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 44px;
  align-items: center
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eef9e8;
  color: #277d36;
  border: 1px solid #d9f0cc;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .6px
}

.eyebrow:before {
  content: "✦"
}

.hero h1 {
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.02;
  letter-spacing: -3px;
  margin: 20px 0 18px;
  font-weight: 950
}

.gradient-text {
  background: linear-gradient(100deg, #1f7b47, #43b941, #ef233c, #7657e8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.hero p {
  font-size: 18px;
  color: var(--muted);
  max-width: 570px;
  margin: 0 0 26px
}

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

.micro {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px
}

.stars {
  color: #f3b51b;
  letter-spacing: 2px
}

.hero-card {
  position: relative;
  border: 1px solid #e1e8df;
  border-radius: 28px;
  background: linear-gradient(145deg, #f4fbf1, #fff);
  padding: 24px;
  box-shadow: var(--shadow)
}

.hero-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px
}

.live-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #207e40;
  font-size: 12px;
  font-weight: 900
}

.live-pill i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #45bd43;
  box-shadow: 0 0 0 5px #dff5d7
}

.mini-result {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 14px;
  margin: 10px 0
}

.mini-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
  font-weight: 900
}

.mini-number {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 2px;
  margin-top: 5px;
  color: #1e2a42
}

.mini-time {
  font-size: 11px;
  color: var(--muted)
}

.section {
  padding: 52px 0
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 22px
}

.section h2 {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin: 0 0 8px
}

.section-intro {
  color: var(--muted);
  margin: 0;
  max-width: 620px
}

.results-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px
}

.search {
  width: min(340px, 100%);
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  outline: none
}

.search:focus {
  border-color: var(--green)
}

.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.filter {
  border: 1px solid var(--line);
  background: #fff;
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer
}

.filter.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink)
}

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

.result-card {
  border: 1px solid rgba(18, 24, 39, .08);
  border-radius: 18px;
  padding: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(152, 0, 0, .06), transparent 42%),
    linear-gradient(135deg, #ffffff 0%, #fffafa 100%);
  box-shadow: 0 8px 26px rgba(18, 24, 39, .055);
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}

.result-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(18, 24, 39, .09);
}

/* Top status strip */
.result-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg,
      var(--green),
      #b7dc42,
      #7657e8);
}

/* Open / active */
.result-card:not(.closed):not(.pending) {
  background:
    radial-gradient(circle at 100% 0%,
      rgba(183, 220, 66, .16),
      transparent 42%),
    linear-gradient(135deg, #ffffff, #f9fff3);
}

/* Closed */
.result-card.closed {
  background:
    radial-gradient(circle at 100% 0%,
      rgba(239, 35, 60, .10),
      transparent 42%),
    linear-gradient(135deg, #ffffff, #fff8f7);
}

.result-card.closed:before {
  background: linear-gradient(90deg,
      #f3b51b,
      #ef233c);
}

/* Pending */
.result-card.pending {
  background:
    radial-gradient(circle at 100% 0%,
      rgba(118, 87, 232, .12),
      transparent 42%),
    linear-gradient(135deg, #ffffff, #f7f7ff);
}

.result-card.pending:before {
  background: linear-gradient(90deg,
      #2779e6,
      #7657e8);
}

.result-top {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: start
}

.market {
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .2px
}

.status {
  font-size: 10px;
  font-weight: 900;
  border-radius: 999px;
  padding: 5px 8px;
  white-space: nowrap
}

.status.open {
  background: #e9f8e8;
  color: #25853a
}

.status.closed {
  background: #fff0e9;
  color: #d4511d
}

.status.pending {
  background: #eef4ff;
  color: #2c67c5
}

.result {
  font-size: 26px;
  font-weight: 950;
  letter-spacing: 1px;
  margin: 15px 0 4px;
  color: #17213a
}

.result.masked {
  color: #98a2b3;
  letter-spacing: 3px
}

.times {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 11px;
  color: var(--muted);
  border-top: 1px dashed #e2e6ec;
  padding-top: 12px
}

.time strong {
  color: #273249
}

.empty {
  grid-column: 1/-1;
  padding: 30px;
  text-align: center;
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: 16px
}

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

.feature {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, #fbfdfb)
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  font-size: 20px;
  background: #eff9e8;
  margin-bottom: 15px
}

.feature:nth-child(2) .feature-icon {
  background: #fff0ef
}

.feature:nth-child(3) .feature-icon {
  background: #f0edff
}

.feature h3 {
  font-size: 17px;
  margin: 0 0 6px
}

.feature p {
  font-size: 14px;
  color: var(--muted);
  margin: 0
}

.support {
  background: #f7faf8;
  border-top: 1px solid #e6efe7;
  border-bottom: 1px solid #e6efe7
}

.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px
}

.support-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  text-align: center
}

.support-icon {
  font-size: 26px;
  margin-bottom: 8px
}

.support-card h3 {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px
}

.support-card p {
  margin: 5px 0 15px;
  font-weight: 900
}

.support-card .btn {
  padding: 10px 14px;
  font-size: 12px
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px
}

.footer {
  background: #102319;
  color: #dce9df;
  padding: 42px 0 20px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 35px
}

.footer .brand {
  color: #fff
}

.footer p {
  color: #a9c1b1;
  font-size: 13px
}

.footer h4 {
  margin: 0 0 12px;
  color: #fff
}

.footer a {
  color: #b9d3c1;
  font-size: 13px
}

.footer a:hover {
  color: #fff
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  margin-top: 28px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
  color: #91ad9c;
  font-size: 12px
}

.legal-page {
  padding: 55px 0
}

.legal-page article {
  max-width: 850px
}

.legal-page h1 {
  font-size: 46px;
  letter-spacing: -2px;
  margin: 0 0 12px
}

.legal-page h2 {
  margin-top: 30px
}

.legal-page p,
.legal-page li {
  color: #526074
}

.notice {
  background: #fff9e7;
  border: 1px solid #f8e1a2;
  color: #805d14;
  padding: 15px 17px;
  border-radius: 12px;
  font-size: 13px;
  margin: 20px 0
}

.mobile-menu {
  display: none
}

.back {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--green-dark);
  font-weight: 800;
  font-size: 14px
}

@media(max-width:900px) {
  .hero-grid {
    grid-template-columns: 1fr
  }

  .hero {
    padding-top: 40px
  }

  .hero-card {
    max-width: 600px
  }

  .result-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .feature-grid,
  .support-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .navlinks {
    display: none
  }

  .mobile-menu {
    display: block
  }

  .nav {
    height: 68px
  }

  .hero h1 {
    letter-spacing: -2px
  }
}

@media(max-width:600px) {
  .container {
    width: min(100% - 24px, 1160px)
  }

  .hero h1 {
    font-size: 45px
  }

  .hero p {
    font-size: 16px
  }

  .result-grid,
  .feature-grid,
  .support-grid,
  .footer-grid {
    grid-template-columns: 1fr
  }

  .section {
    padding: 38px 0
  }

  .section-head {
    display: block
  }

  .section-head .btn {
    margin-top: 15px
  }

  .result-card {
    padding: 16px
  }

  .footer-bottom {
    display: block
  }

  .footer-bottom span {
    display: block;
    margin-top: 7px
  }

  .hero-card {
    padding: 16px
  }

  .nav .btn {
    padding: 10px 12px;
    font-size: 12px
  }

  .brand span {
    font-size: 16px
  }
}

/* Refined market cards: lighter typography, compact corners and screenshot-inspired controls. */
.btn,
.filter,
.search,
.status {
  border-radius: 6px
}

.brand {
  font-weight: 700
}

.brand img {
  border-radius: 6px
}

.hero h1 {
  font-weight: 800
}

.hero-card,
.result-card,
.feature,
.support-card {
  border-radius: 9px
}

.hero-card {
  padding: 20px
}

.market-heading,
.result-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px
}

.market {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .1px
}

.result-card {
  padding: 0;
  background: #fff;
  border: 1px solid #d6e1da;
  box-shadow: 0 4px 12px rgba(16, 35, 25, .035);
  overflow: hidden
}

.result-card:before {
  height: 3px
}

.market-heading {
  padding: 15px 16px 9px
}

.result-line {
  padding: 0 16px 13px;
  align-items: center
}

.result {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 1px;
  margin: 0;
  color: #5c80bd
}

.result.masked {
  color: #667085;
  font-weight: 500
}

.status {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 7px;
  letter-spacing: .2px
}

.status.running {
  background: #e3f4e5;
  color: #40945c
}

.status.closed {
  background: #ffe7e7;
  color: #e34b4b
}

.status.pending {
  background: #edf3ff;
  color: #4a75ba
}

.market-action {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 25px;
  line-height: 1;
  flex: 0 0 auto
}

.play-action {
  background: #dff2df;
  color: #438b67;
  font-size: 18px;
  transition: transform .2s, background .2s
}

.play-action:hover {
  transform: scale(1.05);
  background: #cceacb
}

.close-action {
  background: #ffe1e1;
  color: #f04a4a;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  border: 1px solid #ffd0d0;
  box-shadow: inset 0 0 0 1px rgba(240, 74, 74, .04)
}

.pending-action {
  background: #eef2f6;
  color: #8b99a7;
  font-size: 22px;
  font-weight: 500;
  border: 1px solid #e4eaf0
}

.times {
  border-top: 1px solid #dfe7e1;
  background: #fbfdfb;
  padding: 13px 16px 14px;
  font-size: 11px;
  gap: 14px
}

.time {
  white-space: nowrap
}

.time strong {
  font-weight: 700;
  color: #202a38
}

.result-card.running:before {
  background: #4d9b72
}

.result-card.closed:before {
  background: #77a98a
}

.result-card.pending:before {
  background: #d6e0e8
}

.section h2 {
  font-weight: 750
}

.feature h3,
.support-card p {
  font-weight: 650
}

@media(max-width:600px) {
  .market-heading {
    padding: 13px 13px 8px
  }

  .result-line {
    padding: 0 13px 11px
  }

  .times {
    padding: 11px 13px 12px;
    font-size: 10px
  }

  .market-action {
    width: 38px;
    height: 38px
  }

  .result {
    font-size: 22px
  }
}

/* Clean hero refinement: restrained palette, clear hierarchy and comfortable reading. */
.hero {
  padding: 56px 0 34px;
  background: #fff
}

.hero:before {
  display: none
}

.hero-grid {
  gap: 40px
}

.eyebrow {
  background: #f3f8f3;
  color: #24723f;
  border: 1px solid #dcebdd;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .25px
}

.eyebrow:before {
  content: "✦";
  font-size: 11px
}

.hero h1 {
  font-size: clamp(40px, 5vw, 62px);
  line-height: 1.08;
  letter-spacing: -2.1px;
  margin: 24px 0 18px;
  font-weight: 750;
  color: #111827;
  max-width: 650px
}

.gradient-text {
  background: none;
  color: #111827;
  -webkit-text-fill-color: initial
}

.hero p {
  font-size: 17px;
  line-height: 1.75;
  color: #596579;
  max-width: 570px;
  margin: 0 0 28px
}

.hero-actions {
  gap: 12px
}

.hero-actions .btn {
  min-height: 50px;
  padding: 13px 19px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: none
}

.hero-actions .btn-primary {
  background: #39b947;
  color: #fff
}

.hero-actions .btn-primary:hover {
  background: #2fa63c
}

.hero-actions .btn-outline {
  border: 1px solid #d8e0e8;
  background: #fff;
  color: #172033
}

.hero-actions .btn-outline:hover {
  background: #f7f9fb;
  border-color: #bfcbd8
}

.micro {
  margin-top: 18px;
  gap: 11px;
  font-size: 13px;
  color: #647084
}

.stars {
  color: #e5a51c;
  letter-spacing: 1px
}

.hero-card {
  box-shadow: 0 8px 24px rgba(18, 24, 39, .04);
  background: #fff
}

@media(max-width:600px) {
  .hero {
    padding: 38px 0 28px
  }

  .hero h1 {
    font-size: 43px;
    letter-spacing: -1.5px;
    margin-top: 22px
  }

  .hero p {
    font-size: 16px;
    line-height: 1.65
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px
  }

  .hero-actions .btn {
    width: 100%
  }

  .micro {
    flex-wrap: wrap;
    gap: 8px
  }
}