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

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

html {
  scroll-behavior: smooth;
}

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

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 32%, rgba(255, 36, 36, 0.26), transparent 36%),
    radial-gradient(circle at 25% 72%, rgba(255, 255, 255, 0.1), transparent 20%),
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 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 18%, transparent 82%, #020202 100%),
    linear-gradient(180deg, rgba(0,0,0,.45), transparent 45%, #050505 100%);
}

.navbar {
  width: min(1180px, calc(100% - 48px));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  font-size: 23px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.site-nav__logo {
  width: 48px;
  height: 48px;
  background-image: var(--site-logo-url);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  filter: drop-shadow(0 0 18px rgba(255, 35, 35, .85));
}

.brand span span {
  color: #ff2d32;
}

.navbar nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.navbar nav a {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .4px;
  transition: .2s ease;
}

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

.vip-btn {
  padding: 15px 25px;
  border-radius: 999px;
  color: #fff;
  background: #ff2a2f;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 0 35px rgba(255, 38, 43, .5);
}

.leaderboards-page {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 70px 0 90px;
}

.leaderboards-hero {
  text-align: center;
  padding: 30px 0 55px;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 22px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(8,8,12,.72);
  color: rgba(255,255,255,.9);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 4px;
}

.live-pill span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff2a2f;
  box-shadow: 0 0 14px #ff2a2f;
}

.leaderboards-hero h1 {
  margin-top: 28px;
  font-size: clamp(54px, 7vw, 96px);
  line-height: .92;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: -4px;
  text-shadow: 0 0 28px rgba(255,255,255,.45);
}

.leaderboards-hero h1 strong {
  color: #ff282d;
  text-shadow: 0 0 30px rgba(255, 38, 43, .6);
}

.leaderboards-hero p {
  width: min(680px, 100%);
  margin: 28px auto 0;
  color: rgba(255,255,255,.68);
  font-size: 17px;
  line-height: 1.6;
}

.leaderboards-panel {
  padding: 28px;
  border: 1px solid rgba(255, 55, 65, .38);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 35, 40, .08), rgba(255, 255, 255, .025)),
    rgba(8, 6, 10, .68);
  box-shadow:
    inset 0 0 40px rgba(255, 35, 35, .04),
    0 25px 80px rgba(0,0,0,.35);
}

.panel-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.panel-kicker {
  display: block;
  margin-bottom: 8px;
  color: #ff2a2f;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3px;
}

.panel-header h2 {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: -2px;
}

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


.site-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.site-card {
  position: relative;
  overflow: hidden;
  min-height: 185px;
  padding: 24px;
  border: 1px solid rgba(255, 55, 65, .48);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 42, 47, .18), transparent 48%),
    rgba(6, 5, 8, .8);
  color: #fff;
  text-decoration: none;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.site-card:hover,
.site-card-link:hover .site-card {
  transform: translateY(-4px);
  border-color: rgba(255, 55, 65, .9);
  box-shadow: 0 0 35px rgba(255, 38, 43, .24);
}

.site-card::after {
  content: "";
  position: absolute;
  inset: auto -30% -45% -30%;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 42, 47, .28), transparent 65%);
  pointer-events: none;
}

.site-card img {
  max-width: 135px;
  max-height: 56px;
  object-fit: contain;
  margin-bottom: 18px;
  filter: drop-shadow(0 0 16px rgba(255, 255, 255, .12));
}

.site-card h3 {
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.site-card p {
  margin-top: 10px;
  color: rgba(255,255,255,.6);
  font-size: 14px;
  line-height: 1.55;
}

.site-card .btn,
.site-card button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  background: #ff282d;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 0 24px rgba(255, 38, 43, .35);
  cursor: pointer;
}

.ticker {
  height: 58px;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.6);
  overflow: hidden;
}

.ticker-track {
  height: 100%;
  min-width: 1400px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 44px;
  animation: moveTicker 28s linear infinite;
}

.ticker span {
  color: rgba(255,255,255,.42);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 4px;
  white-space: nowrap;
}

.ticker b {
  margin-left: 12px;
  color: #fff;
  font-size: 20px;
  letter-spacing: 0;
}

.ticker span::after {
  content: "•";
  margin-left: 18px;
  color: #ff2a2f;
}

@keyframes moveTicker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-260px);
  }
}

@media (max-width: 1000px) {
  .site-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .navbar {
    height: auto;
    padding: 22px 0;
    gap: 18px;
    flex-wrap: wrap;
  }

  .navbar nav {
    width: 100%;
    order: 3;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
  }

  .leaderboards-page {
    padding-top: 45px;
  }
}

@media (max-width: 620px) {
  .navbar,
  .leaderboards-page {
    width: min(100% - 28px, 1180px);
  }

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

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

  .leaderboards-panel {
    padding: 18px;
  }

  .vip-btn {
    padding: 13px 18px;
  }
}
/* FOOTER SOCIALS + KICK STATUS */
.site-footer {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 42px 0 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-kicker {
  display: block;
  margin-bottom: 8px;
  color: #ff2a2f;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3px;
}

.site-footer strong {
  display: block;
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: -1px;
}

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

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 55, 65, .42);
  border-radius: 999px;
  background: rgba(8,8,12,.7);
  color: rgba(255,255,255,.82);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .6px;
  transition: .2s ease;
}

.footer-social:hover {
  color: #fff;
  border-color: rgba(255, 55, 65, .95);
  background: rgba(255, 42, 47, .18);
  box-shadow: 0 0 24px rgba(255, 38, 43, .22);
  transform: translateY(-2px);
}

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

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

.kick-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(8,8,12,.78);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  box-shadow: 0 0 28px rgba(0,0,0,.34);
  backdrop-filter: blur(10px);
}

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

.kick-status__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #facc15;
  box-shadow: 0 0 14px #facc15;
}

.kick-status--live .kick-status__dot {
  background: #22c55e;
  box-shadow: 0 0 16px #22c55e;
}

.kick-status--offline .kick-status__dot {
  background: #ff2a2f;
  box-shadow: 0 0 16px #ff2a2f;
}

@media (max-width: 760px) {
  .site-footer {
    width: min(100% - 28px, 1180px);
    align-items: flex-start;
    flex-direction: column;
  }

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

  .kick-status--floating {
    left: 14px;
    right: 14px;
    justify-content: center;
  }
}


/* FIXED FOOTER SOCIALS + KICK STATUS */
.footer-social__icon img, .social-pill__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}
.kick-status--loading .kick-status__dot {
  background: #facc15;
  box-shadow: 0 0 14px #facc15;
  animation: kickPulse 1.1s infinite ease-in-out;
}
.kick-status--live .kick-status__dot {
  background: #22c55e;
  box-shadow: 0 0 16px #22c55e;
}
.kick-status--offline .kick-status__dot {
  background: #ff2a2f;
  box-shadow: 0 0 16px #ff2a2f;
}
@keyframes kickPulse {
  0%, 100% { transform: scale(1); opacity: .7; }
  50% { transform: scale(1.35); opacity: 1; }
}

/* LEADERBOARDS PAGE: prize-only cards + animated total */
.total-prize-counter {
  width: min(620px, 100%);
  margin: 34px auto 0;
  padding: 26px 28px;
  border: 1px solid rgba(255, 55, 65, .46);
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 42, 47, .28), transparent 58%),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.025)),
    rgba(8, 6, 10, .78);
  box-shadow:
    0 0 45px rgba(255, 38, 43, .20),
    inset 0 0 35px rgba(255,255,255,.035);
}

.total-prize-counter__label,
.total-prize-counter__note {
  display: block;
  color: rgba(255,255,255,.62);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2.6px;
}

.total-prize-counter strong {
  display: block;
  margin: 8px 0 7px;
  color: #fff;
  font-size: clamp(48px, 8vw, 82px);
  line-height: .92;
  font-weight: 900;
  letter-spacing: -4px;
  text-shadow:
    0 0 18px rgba(255,255,255,.28),
    0 0 34px rgba(255, 38, 43, .38);
}

.site-grid {
  align-items: stretch;
}

.site-card.leaderboard-card {
  min-height: 310px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  border-color: rgba(255, 55, 65, .38);
  box-shadow: 0 0 28px var(--card-glow, rgba(255, 42, 47, .28));
}

.site-card.leaderboard-card:hover,
.site-card-link:hover .site-card.leaderboard-card {
  box-shadow:
    0 0 42px var(--card-glow, rgba(255, 42, 47, .32)),
    0 22px 70px rgba(0,0,0,.34);
}

.leaderboard-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.leaderboard-card__logo-wrap {
  width: 146px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.leaderboard-card__logo-img {
  max-width: 146px !important;
  max-height: 58px !important;
  margin: 0 !important;
  object-fit: contain;
}

.leaderboard-card__logo-text {
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.leaderboard-card__status {
  flex: 0 0 auto;
  padding: 8px 12px;
  border: 1px solid rgba(34, 197, 94, .42);
  border-radius: 999px;
  background: rgba(34, 197, 94, .1);
  color: #86efac;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
}

.leaderboard-card__name {
  margin-top: auto;
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1.4px;
}

.leaderboard-card__prize {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  background: rgba(255,255,255,.045);
}

.leaderboard-card__prize span {
  display: block;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
}

.leaderboard-card__prize strong {
  display: block;
  margin-top: 7px;
  color: #fff;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1.8px;
}

.leaderboard-card__btn {
  width: 100%;
  min-height: 48px;
  margin-top: 0 !important;
}

@media (max-width: 620px) {
  .total-prize-counter {
    padding: 22px 18px;
  }

  .total-prize-counter strong {
    letter-spacing: -2px;
  }

  .site-card.leaderboard-card {
    min-height: 280px;
  }
}
