.leaderboards {
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.leaderboard-entry {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100px;
  overflow: hidden;
  padding: 15px 30px;
  text-decoration: none;
  gap: 30px;
}
.leaderboard-entry:nth-of-type(1) .leaderboard-entry__position {
  color: #8764eb;
}
.leaderboard-entry:nth-of-type(2) .leaderboard-entry__position {
  color: #d574d1;
}
.leaderboard-entry:nth-of-type(3) .leaderboard-entry__position {
  color: #73abf4;
}
.leaderboard-entry:nth-of-type(2n) {
  background: rgba(255, 255, 255, 0.02);
}

.leaderboard-entry__background {
  position: absolute;
  width: calc(100% + 100px);
  height: calc(100% + 100px);
  z-index: -99;
  filter: blur(40px) saturate(1.4) brightness(0.2);
}

.leaderboard-entry__position {
  font-size: 24px;
  color: var(--text-color);
  font-family: var(--title-font-stack);
  font-weight: 600;
}

.leaderboard-entry__avatar {
  height: 100%;
  border-radius: 50%;
  aspect-ratio: 1/1;
  background: rgba(255, 255, 255, 0.05);
  text-align: center;
}

.leaderboard-entry__username {
  width: 100%;
  color: var(--text-color);
}

.leaderboard-entry__elo {
  color: var(--p-color);
}

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

:root {
  --bg-color: #121212;
  --text-color: #ffffff;
  --muted-color: rgba(255, 255, 255, 0.45);
  --title-color: rgba(255, 255, 255, 0.92);
  --p-color: rgba(255, 255, 255, 0.72);
  --font-stack: "Open Sans", sans-serif;
  --title-font-stack: "Readex Pro", "Open Sans", sans-serif;
}

body {
  background: var(--bg-color);
  font-family: var(--font-stack);
  color: var(--p-color);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(12px);
  padding: 10px 3vw;
  z-index: 999;
}

.navbar-right {
  margin-left: auto;
}

.navbar__logo {
  width: 65px;
  margin-right: 25px;
}

.navbar-links {
  display: flex;
  gap: 20px;
}

.navbar__link {
  color: var(--text-color);
  text-decoration: none;
  font-family: var(--font-stack);
  font-size: 16px;
}
.navbar__link:hover {
  text-decoration: underline;
}

.input-group {
  position: relative;
  width: 240px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
}
.input-group > i {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translate(-50%, -50%);
}
.input-group > label {
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
  font-size: 16px;
  color: var(--muted-color);
}
.input-group > input {
  position: absolute;
  inset: 0;
  background: transparent;
  border: 0;
  padding-left: 40px;
  font-size: 16px;
  color: var(--p-color);
  font-family: inherit;
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100vh;
}

.hero-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -999;
  pointer-events: none;
}

.hero-background__video {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border: 0;
  filter: brightness(0.2);
  pointer-events: none;
}

@media (min-aspect-ratio: 16/9) {
  .hero-background__video {
    height: 56.25vw;
  }
}
@media (max-aspect-ratio: 16/9) {
  .hero-background__video {
    width: 177.78vh;
  }
}
.hero-content {
  max-width: min(calc(100vw - 40px), 700px);
  text-align: center;
}

.hero__title {
  font-size: 44px;
  color: var(--text-color);
  font-family: var(--title-font-stack);
  margin-bottom: 2px;
  font-weight: 600;
}

.hero__description {
  font-size: 20px;
  margin-bottom: 30px;
}

button, .btn {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  font-family: inherit;
  color: var(--text-color);
  border: 0;
  padding: 10px 20px;
  font-size: 16px;
}
button > i, .btn > i {
  margin-right: 15px;
}

.btn--discord {
  background: #5865F2;
}

.top-gap {
  display: block;
  height: 84.64px;
}

.block, .footer {
  display: block;
  padding: 40px 3vw;
}

.footer {
  display: flex;
  background: rgba(0, 0, 0, 0.4);
  gap: 15px;
}

.footer__title {
  color: var(--text-color);
}

.block--gradient {
  background: #760e58;
  background: -moz-linear-gradient(90deg, #760e58 0%, #331489 100%);
  background: -webkit-linear-gradient(90deg, #760e58 0%, #331489 100%);
  background: linear-gradient(90deg, #760e58 0%, #331489 100%);
}

h1 {
  font-family: var(--title-font-stack);
  color: var(--text-color);
  font-size: 36px;
  margin-bottom: 2px;
  font-weight: 600;
}

.__description {
  font-size: 20px;
}

a, p {
  color: var(--p-color);
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card {
  background: rgba(0, 0, 0, 0.35);
  border-radius: 10px;
  padding: 20px 30px;
  text-align: center;
}

.card__title {
  font-size: 16px;
  text-transform: uppercase;
  color: var(--muted-color);
  margin-bottom: 6px;
}

.card__text {
  color: var(--text-color);
  font-family: var(--title-font-stack);
  font-weight: 600;
  font-size: 28px;
}

/*# sourceMappingURL=main.css.map */
