@import url("https://fonts.googleapis.com/css2?family=Inter:wght@500;600;700;800;900&display=swap");

:root {
  --red: #ff2a31;
  --red-soft: rgba(255, 42, 49, 0.16);
  --surface: rgba(11, 10, 14, 0.82);
  --surface-strong: rgba(16, 13, 18, 0.95);
  --line: rgba(255, 255, 255, 0.1);
  --muted: rgba(255, 255, 255, 0.62);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  color: #fff;
  background: #030303;
  font-family: "Inter", Arial, sans-serif;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 17%, rgba(255, 26, 33, 0.2), transparent 29%),
    radial-gradient(circle at 14% 62%, rgba(255, 255, 255, 0.055), transparent 22%),
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    #050505;
  background-size: auto, auto, 72px 72px, 72px 72px;
}

.site-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #020202 0%, transparent 16%, transparent 84%, #020202 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.32), transparent 50%, #050505 100%);
}

.navbar {
  width: min(1120px, calc(100% - 40px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: 0.8px;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 0 15px rgba(255, 35, 35, 0.72));
}

.brand > span > span {
  color: var(--red);
}

.navbar nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.navbar nav a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.25px;
  transition: 0.2s ease;
}

.navbar nav a:hover {
  color: #fff;
}

.home-shell {
  width: min(1000px, calc(100% - 40px));
  margin: 0 auto;
  padding: 58px 0 40px;
}

.home-hero {
  width: min(720px, 100%);
  margin: 0 auto 38px;
  text-align: center;
}

.home-hero__eyebrow,
.card-kicker,
.footer-kicker {
  color: var(--red);
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2.8px;
}

.home-hero h1 {
  margin-top: 14px;
  font-size: clamp(42px, 6vw, 66px);
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: -3.5px;
  text-shadow: 0 0 24px rgba(255, 255, 255, 0.22);
}

.home-hero h1 strong {
  color: var(--red);
  text-shadow: 0 0 28px rgba(255, 42, 49, 0.45);
}

.home-hero p {
  width: min(620px, 100%);
  margin: 17px auto 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.home-hero__actions {
  margin-top: 23px;
  display: flex;
  justify-content: center;
  gap: 11px;
  flex-wrap: wrap;
}

.home-button {
  min-width: 180px;
  min-height: 44px;
  padding: 0 19px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.home-button--primary {
  border: 1px solid var(--red);
  background: var(--red);
  box-shadow: 0 0 28px rgba(255, 42, 49, 0.32);
}

.home-button--secondary {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.035);
}

.primary-grid,
.secondary-grid {
  display: grid;
  gap: 14px;
}

.primary-grid {
  grid-template-columns: minmax(0, 1fr);
}

.primary-card {
  position: relative;
  min-height: 224px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(150px, 0.75fr);
  align-items: center;
  gap: 8px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: #fff;
  background:
    linear-gradient(125deg, rgba(255, 42, 49, 0.08), transparent 54%),
    var(--surface);
  text-decoration: none;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.primary-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 58, 65, 0.62);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.primary-card--leaderboards {
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.045), transparent 56%),
    var(--surface);
}

.primary-card h2 {
  margin-top: 7px;
  text-transform: uppercase;
  font-size: clamp(23px, 3vw, 34px);
  line-height: 1;
  letter-spacing: -1.4px;
}

.primary-card p {
  max-width: 340px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.card-link,
.secondary-card__action {
  width: fit-content;
  margin-top: 19px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.4px;
}

.card-link b,
.secondary-card__action b {
  color: var(--red);
}

.primary-card__art {
  position: relative;
  height: 155px;
  display: grid;
  place-items: center;
}

.reward-art {
  transform: scale(0.86);
}

.reward-art__box {
  width: 112px;
  height: 100px;
  border: 2px solid rgba(255, 63, 70, 0.9);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255, 46, 54, 0.25), rgba(10, 5, 8, 0.92));
  box-shadow:
    inset 0 0 30px rgba(255, 33, 41, 0.22),
    0 0 35px rgba(255, 30, 38, 0.18);
}

.reward-art__ribbon {
  position: absolute;
  background: linear-gradient(#ff343b, #7a0e14);
  box-shadow: 0 0 12px rgba(255, 42, 49, 0.42);
}

.reward-art__ribbon--vertical {
  width: 17px;
  height: 88px;
}

.reward-art__ribbon--horizontal {
  width: 112px;
  height: 17px;
}

.reward-art__bow {
  position: absolute;
  top: 18px;
  width: 46px;
  height: 28px;
  border: 7px solid #ff343b;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(255, 42, 49, 0.38);
}

.reward-art__bow--left {
  left: 36px;
  transform: rotate(28deg);
}

.reward-art__bow--right {
  right: 36px;
  transform: rotate(-28deg);
}

.podium-art {
  grid-template-columns: repeat(3, 50px);
  align-items: end;
  justify-content: center;
  gap: 4px;
}

.podium-art__step {
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px 8px 3px 3px;
  color: rgba(255, 255, 255, 0.82);
  background: linear-gradient(180deg, #2b2d33, #0b0c10);
  font-size: 22px;
  font-weight: 900;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.04);
}

.podium-art__step--one {
  height: 92px;
  border-color: rgba(255, 46, 54, 0.55);
  color: #fff;
  text-shadow: 0 0 14px rgba(255, 42, 49, 0.72);
}

.podium-art__step--two {
  height: 67px;
}

.podium-art__step--three {
  height: 52px;
}

.podium-art__crown {
  position: absolute;
  top: 5px;
  color: #fff;
  font-size: 38px;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.6);
}

.secondary-grid {
  margin-top: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.secondary-card {
  min-height: 164px;
  padding: 21px;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  align-items: center;
  gap: 17px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: #fff;
  background: var(--surface);
  text-decoration: none;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.secondary-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 55, 62, 0.5);
}

.secondary-card--rewards {
  border-color: rgba(255, 55, 62, 0.42);
}

.secondary-card__icon {
  width: 72px;
  height: 72px;
  position: relative;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 55, 62, 0.35);
  border-radius: 20px;
  color: var(--red);
  background:
    linear-gradient(145deg, rgba(255, 42, 49, 0.17), rgba(5, 5, 7, 0.95));
  box-shadow: inset 0 0 22px rgba(255, 42, 49, 0.08);
  font-size: 35px;
}

.secondary-card__icon--star {
  clip-path: polygon(50% 0%, 91% 16%, 100% 58%, 72% 92%, 28% 92%, 0 58%, 9% 16%);
}

.secondary-card__icon--mountain {
  overflow: hidden;
}

.secondary-card__icon--mountain span {
  position: absolute;
  bottom: 15px;
  width: 42px;
  height: 42px;
  border: solid rgba(255, 255, 255, 0.62);
  border-width: 2px 2px 0 0;
  transform: rotate(-45deg);
}

.secondary-card__icon--mountain span:last-child {
  right: 8px;
  width: 30px;
  height: 30px;
  opacity: 0.48;
}

.secondary-card__icon--gift span {
  width: 40px;
  height: 32px;
  border: 2px solid var(--red);
  border-radius: 5px;
  box-shadow: 0 0 13px rgba(255, 42, 49, 0.28);
}

.secondary-card__icon--gift span::before,
.secondary-card__icon--gift span::after {
  content: "";
  position: absolute;
  background: var(--red);
}

.secondary-card__icon--gift span::before {
  width: 7px;
  height: 44px;
  top: 14px;
  left: 32px;
}

.secondary-card__icon--gift span::after {
  width: 48px;
  height: 7px;
  top: 29px;
  left: 11px;
}

.secondary-card h3 {
  margin-top: 5px;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: -0.5px;
}

.secondary-card p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.secondary-card__action {
  margin-top: 12px;
  font-size: 9px;
}

.secondary-card__action--muted {
  color: rgba(255, 255, 255, 0.46);
}

.site-footer {
  width: min(1000px, calc(100% - 40px));
  margin: 10px auto 0;
  padding: 31px 0 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

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

.site-footer strong {
  display: block;
  max-width: 230px;
  text-transform: uppercase;
  font-size: 22px;
  line-height: 1.05;
}

.footer-socials {
  display: flex;
  justify-content: flex-end;
  gap: 9px;
  flex-wrap: wrap;
}

.footer-social {
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 55, 65, 0.36);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(8, 8, 12, 0.62);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 850;
  transition: 0.2s ease;
}

.footer-social:hover {
  color: #fff;
  border-color: rgba(255, 55, 65, 0.8);
  background: var(--red-soft);
  transform: translateY(-2px);
}

.footer-social__icon {
  width: 17px;
  height: 17px;
  display: inline-flex;
}

.footer-social__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

@media (max-width: 940px) {
  .navbar {
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .navbar nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .primary-grid,
  .secondary-grid {
    grid-template-columns: 1fr;
  }

  .secondary-card {
    grid-template-columns: 72px minmax(0, 1fr);
  }
}

@media (max-width: 620px) {
  .home-shell,
  .navbar,
  .site-footer {
    width: min(100% - 26px, 1000px);
  }

  .home-shell {
    padding-top: 40px;
  }

  .home-hero h1 {
    font-size: clamp(39px, 13vw, 57px);
    letter-spacing: -2.5px;
  }

  .home-button {
    width: 100%;
  }

  .primary-card {
    min-height: 0;
    grid-template-columns: 1fr;
    padding: 23px;
  }

  .primary-card__art {
    height: 125px;
  }

  .secondary-card {
    min-height: 148px;
    padding: 18px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-socials {
    justify-content: flex-start;
  }
}


/* FLOATING KICK STATUS */
.kick-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  color: rgba(255,255,255,.82);
  background: rgba(7,7,10,.92);
  box-shadow: 0 16px 42px rgba(0,0,0,.5);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.2px;
  transition: .2s ease;
}

.kick-status:hover {
  transform: translateY(-2px);
  color: #fff;
  border-color: rgba(255,255,255,.25);
}

.kick-status--floating {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 120;
}

.kick-status__dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #ff3038;
  box-shadow: 0 0 13px rgba(255,48,56,.9);
}

.kick-status--loading .kick-status__dot {
  background: #f4b942;
  box-shadow: 0 0 13px rgba(244,185,66,.8);
  animation: kick-status-pulse 1.2s ease-in-out infinite;
}

.kick-status--live {
  color: #fff;
  border-color: rgba(83,252,24,.45);
  background: linear-gradient(90deg, rgba(83,252,24,.11), rgba(7,7,10,.94));
  box-shadow: 0 16px 42px rgba(0,0,0,.52), 0 0 25px rgba(83,252,24,.14);
}

.kick-status--live .kick-status__dot {
  background: #53fc18;
  box-shadow: 0 0 14px rgba(83,252,24,.95);
  animation: kick-status-pulse 1.25s ease-in-out infinite;
}

.kick-status--offline {
  color: rgba(255,255,255,.74);
  border-color: rgba(255,54,62,.26);
}

@keyframes kick-status-pulse {
  0%,100% { opacity:.58; transform:scale(.82); }
  50% { opacity:1; transform:scale(1.12); }
}

@media (max-width:620px) {
  .kick-status--floating { right:13px; bottom:13px; }
  .kick-status {
    min-height:39px;
    max-width:calc(100vw - 26px);
    padding:0 13px;
    font-size:9px;
    letter-spacing:.9px;
  }
}


/* =========================================================
   HOME SCALE RESTORATION
   Keeps the compact card structure while restoring the visual
   size and spacing of the original site.
   ========================================================= */

.navbar {
  width: min(1280px, calc(100% - 48px));
  min-height: 84px;
}

.brand {
  font-size: 25px;
}

.brand img {
  width: 50px;
  height: 50px;
}

.navbar nav {
  gap: 32px;
}

.navbar nav a {
  font-size: 12px;
}

.home-shell {
  width: min(1180px, calc(100% - 48px));
  padding: 92px 0 64px;
}

.home-hero {
  width: min(860px, 100%);
  margin-bottom: 58px;
}

.home-hero__eyebrow,
.card-kicker,
.footer-kicker {
  font-size: 11px;
  letter-spacing: 3.2px;
}

.home-hero h1 {
  margin-top: 18px;
  font-size: clamp(58px, 7vw, 92px);
  line-height: 0.95;
  letter-spacing: -5px;
}

.home-hero p {
  width: min(760px, 100%);
  margin-top: 22px;
  font-size: 17px;
  line-height: 1.7;
}

.home-hero__actions {
  margin-top: 30px;
  gap: 14px;
}

.home-button {
  min-width: 220px;
  min-height: 52px;
  padding: 0 25px;
  font-size: 12px;
}

.primary-grid,
.secondary-grid {
  gap: 18px;
}

.primary-card {
  min-height: 290px;
  padding: 36px;
  border-radius: 22px;
  grid-template-columns: minmax(0, 1.2fr) minmax(210px, 0.8fr);
}

.primary-card h2 {
  margin-top: 10px;
  font-size: clamp(34px, 3.7vw, 48px);
  letter-spacing: -2px;
}

.primary-card p {
  max-width: 450px;
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.65;
}

.card-link,
.secondary-card__action {
  margin-top: 24px;
  font-size: 11px;
}

.primary-card__art {
  height: 200px;
}

.reward-art {
  transform: scale(1.06);
}

.podium-art {
  grid-template-columns: repeat(3, 66px);
  gap: 6px;
}

.podium-art__step {
  font-size: 28px;
}

.podium-art__step--one {
  height: 126px;
}

.podium-art__step--two {
  height: 92px;
}

.podium-art__step--three {
  height: 72px;
}

.podium-art__crown {
  top: -5px;
  font-size: 48px;
}

.secondary-grid {
  margin-top: 18px;
}

.secondary-card {
  min-height: 220px;
  padding: 28px;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 24px;
  border-radius: 20px;
}

.secondary-card__icon {
  width: 94px;
  height: 94px;
  border-radius: 24px;
  font-size: 44px;
}

.secondary-card h3 {
  margin-top: 8px;
  font-size: 24px;
}

.secondary-card p {
  margin-top: 11px;
  font-size: 13px;
  line-height: 1.6;
}

.secondary-card__action {
  margin-top: 16px;
  font-size: 10px;
}

.site-footer {
  width: min(1180px, calc(100% - 48px));
  margin-top: 24px;
  padding: 42px 0 62px;
  gap: 36px;
}

.site-footer strong {
  max-width: 280px;
  font-size: 28px;
}

.footer-social {
  min-height: 44px;
  padding: 10px 16px;
  font-size: 11px;
}

.footer-social__icon {
  width: 19px;
  height: 19px;
}

@media (max-width: 940px) {
  .home-shell {
    padding-top: 64px;
  }

  .primary-card {
    min-height: 250px;
  }

  .secondary-card {
    min-height: 190px;
  }
}

@media (max-width: 620px) {
  .navbar,
  .home-shell,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .navbar {
    min-height: 76px;
  }

  .home-shell {
    padding-top: 52px;
  }

  .home-hero {
    margin-bottom: 42px;
  }

  .home-hero h1 {
    font-size: clamp(48px, 16vw, 70px);
    letter-spacing: -3px;
  }

  .home-hero p {
    font-size: 15px;
  }

  .primary-card {
    min-height: 0;
    padding: 28px;
  }

  .primary-card h2 {
    font-size: 34px;
  }

  .primary-card__art {
    height: 165px;
  }

  .secondary-card {
    min-height: 180px;
    padding: 22px;
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .secondary-card__icon {
    width: 78px;
    height: 78px;
  }

  .site-footer strong {
    font-size: 24px;
  }
}


/* HOME CARD PNG ARTWORK */
.primary-card--leaderboards {
  width: 100%;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
}

.primary-card--leaderboards .primary-card__copy {
  position: relative;
  z-index: 2;
}

.primary-card--leaderboards .primary-card__art {
  min-width: 0;
  height: 260px;
}

.home-card-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.38));
}

.home-card-image--primary {
  max-width: 400px;
  max-height: 400px;
  margin: 0 auto;
}

.secondary-card__image {
  width: 140px;
  height: 140px;
  min-width: 0;
  display: grid;
  place-items: center;
}

.secondary-card__image .home-card-image {
  max-width: 140px;
  max-height: 140px;
}

@media (max-width: 940px) {
  .primary-card--leaderboards {
    grid-template-columns: minmax(0, 1.35fr) minmax(180px, 0.65fr);
  }
}

@media (max-width: 620px) {
  .primary-card--leaderboards {
    grid-template-columns: 1fr;
  }

  .primary-card--leaderboards .primary-card__art {
    height: 145px;
  }

  .home-card-image--primary {
    max-width: 230px;
    max-height: 230px;
  }

  .secondary-card__image {
    width: 100px;
    height: 88px;
  }

  .secondary-card__image .home-card-image {
    max-width: 100px;
    max-height: 100px;
  }
}


/* Larger PNG artwork spacing */
.secondary-card {
  grid-template-columns: 148px minmax(0, 1fr);
}

@media (max-width: 620px) {
  .secondary-card {
    grid-template-columns: 106px minmax(0, 1fr);
  }
}
