:root {
  --bg: #08090b;
  --panel: #101216;
  --panel-2: #15171c;
  --text: #f4f4f5;
  --muted: #a1a1aa;
  --red: #c8182b;
  --red-dark: #7f0d18;
  --border: rgba(255,255,255,.09);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 0%, rgba(151, 15, 27, .13), transparent 34rem),
    var(--bg);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

button, a {
  -webkit-tap-highlight-color: transparent;
}

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

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  z-index: 999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.site-header {
  width: min(calc(100% - 40px), var(--max));
  height: 88px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 20;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Russo One", sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
}

.brand-mark {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #e52237, #770914);
  clip-path: polygon(20% 0, 80% 0, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0 80%, 0 20%);
  box-shadow: 0 0 26px rgba(200, 24, 43, .45);
}

.accent, h1 span, h2 span {
  color: var(--red);
}

nav {
  display: flex;
  align-items: center;
  gap: 31px;
}

nav a {
  color: #c9c9ce;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .7px;
  text-transform: uppercase;
}

nav a:hover {
  color: white;
}

.nav-cta {
  padding: 12px 18px;
  border: 1px solid rgba(224, 31, 51, .65);
  color: white;
  background: rgba(200, 24, 43, .12);
}

.menu-button {
  display: none;
  border: 0;
  background: transparent;
}

.hero {
  min-height: 710px;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 70px;
  position: relative;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  left: -220px;
  top: 40px;
  background: rgba(177, 16, 33, .15);
  filter: blur(110px);
  border-radius: 50%;
  z-index: -1;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.eyebrow, .section-kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #d2d2d6;
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3ed96d;
  box-shadow: 0 0 14px #3ed96d;
}

h1, h2, h3 {
  font-family: "Russo One", sans-serif;
  margin: 0;
}

h1 {
  margin-top: 24px;
  font-size: clamp(58px, 7vw, 96px);
  line-height: .89;
  letter-spacing: -2.5px;
}

.hero-copy {
  max-width: 625px;
  color: #b0b0b7;
  line-height: 1.75;
  font-size: 16px;
  margin: 27px 0 32px;
}

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

.primary-button, .secondary-button {
  min-height: 58px;
  padding: 0 24px;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-weight: 800;
  letter-spacing: .7px;
  display: inline-flex;
  justify-content: center;
  flex-direction: column;
  text-align: left;
  transition: transform .18s ease, filter .18s ease;
}

.primary-button {
  color: white;
  background: linear-gradient(135deg, #d51d32, #9e0d1d);
  box-shadow: 0 13px 38px rgba(178, 17, 34, .24);
}

.primary-button:hover, .secondary-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.button-main {
  font-size: 13px;
}

.button-sub {
  font-size: 10px;
  opacity: .72;
  margin-top: 2px;
  font-weight: 600;
}

.secondary-button {
  border: 1px solid var(--border);
  background: rgba(255,255,255,.025);
  font-size: 12px;
  align-items: center;
  color: white;
}

.server-strip {
  display: flex;
  align-items: center;
  margin-top: 55px;
  gap: 28px;
}

.server-stat {
  display: grid;
  gap: 7px;
}

.server-stat span, .card-bottom span, .card-header {
  color: #74747d;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.4px;
}

.server-stat strong {
  font-size: 12px;
}

.divider {
  width: 1px;
  height: 33px;
  background: var(--border);
}

.hero-card {
  border: 1px solid var(--border);
  background: rgba(16,18,22,.9);
  box-shadow: 0 32px 90px rgba(0,0,0,.48);
  transform: perspective(1000px) rotateY(-3deg) rotateX(1deg);
}

.card-header, .card-bottom {
  height: 62px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.online-pill {
  color: #75e093;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.online-pill i {
  display: block;
  width: 6px;
  height: 6px;
  background: #48d270;
  border-radius: 50%;
  box-shadow: 0 0 9px #48d270;
}

.world-art {
  height: 370px;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(to bottom, rgba(70,4,13,.2), rgba(5,5,7,.3)),
    linear-gradient(155deg, #251017 0%, #0d1115 56%, #050608 100%);
}

.world-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.027) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.027) 1px, transparent 1px);
  background-size: 23px 23px;
}

.sun {
  width: 130px;
  height: 130px;
  background: #bd1729;
  opacity: .52;
  border-radius: 50%;
  position: absolute;
  right: 55px;
  top: 57px;
  box-shadow: 0 0 70px rgba(200,24,43,.38);
}

.mountain {
  position: absolute;
  bottom: 78px;
  background: #111217;
  transform: rotate(45deg);
}

.mountain-one {
  width: 265px;
  height: 265px;
  left: -60px;
}

.mountain-two {
  width: 220px;
  height: 220px;
  right: -34px;
  bottom: 50px;
  background: #0b0c0f;
}

.ground {
  position: absolute;
  bottom: 0;
  height: 100px;
  width: 100%;
  background: linear-gradient(#121317, #08090b);
  clip-path: polygon(0 35%, 16% 24%, 30% 44%, 51% 17%, 65% 36%, 80% 21%, 100% 32%, 100% 100%, 0 100%);
}

.tower {
  position: absolute;
  width: 65px;
  height: 170px;
  left: 52%;
  bottom: 60px;
  transform: translateX(-50%);
  filter: drop-shadow(0 13px 18px rgba(0,0,0,.7));
}

.tower-body {
  position: absolute;
  left: 12px;
  bottom: 0;
  width: 41px;
  height: 135px;
  background: linear-gradient(90deg, #1c1d22, #0b0c0f);
  border: 1px solid #2c2d32;
}

.tower-body::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 15px;
  background: #c51a2d;
  box-shadow: 0 0 14px #c51a2d;
  left: 16px;
  top: 30px;
}

.tower-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 65px;
  height: 43px;
  background: #17181c;
  clip-path: polygon(0 20%, 20% 20%, 20% 0, 35% 0, 35% 20%, 65% 20%, 65% 0, 80% 0, 80% 20%, 100% 20%, 90% 100%, 10% 100%);
}

.card-bottom {
  height: 75px;
}

.card-bottom div {
  display: grid;
  gap: 7px;
}

.card-bottom strong {
  font-size: 13px;
}

.icon-button {
  width: 39px;
  height: 39px;
  color: white;
  border: 1px solid var(--border);
  background: #181a1f;
  cursor: pointer;
  font-size: 18px;
}

.section {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.intro-section {
  padding: 115px 0 55px;
  text-align: center;
}

.intro-section .section-kicker, .join-content .section-kicker {
  justify-content: center;
  color: var(--red);
}

h2 {
  font-size: clamp(41px, 5vw, 65px);
  line-height: .98;
  letter-spacing: -1.5px;
  margin: 18px 0 22px;
}

.intro-section p, .steps-copy p, .rules-panel p, .join-content p {
  color: var(--muted);
  max-width: 650px;
  margin: auto;
  line-height: 1.75;
}

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

.feature-card {
  min-height: 275px;
  padding: 27px;
  background: linear-gradient(145deg, rgba(24,26,31,.88), rgba(12,13,16,.96));
  border: 1px solid var(--border);
  position: relative;
  transition: transform .22s ease, border-color .22s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(205,29,48,.45);
}

.feature-card.featured {
  background: linear-gradient(145deg, rgba(119,9,20,.7), rgba(28,13,17,.96));
}

.feature-number {
  position: absolute;
  right: 22px;
  top: 21px;
  font-family: "Russo One";
  color: rgba(255,255,255,.19);
  font-size: 12px;
}

.feature-icon {
  font-size: 28px;
  color: #e12a3e;
  height: 66px;
}

.feature-card h3 {
  font-size: 19px;
  margin: 14px 0 14px;
}

.feature-card p {
  color: #92929a;
  font-size: 13px;
  line-height: 1.72;
  margin: 0;
}

.steps-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 100px;
}

.steps-copy .section-kicker, .rules-panel .section-kicker {
  color: var(--red);
}

.steps-copy p, .rules-panel p {
  margin: 0;
}

.steps {
  display: grid;
  gap: 12px;
}

.step {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: start;
  gap: 21px;
  padding: 24px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.02);
}

.step > span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  font-family: "Russo One";
  color: white;
  background: #9e101f;
  clip-path: polygon(15% 0, 85% 0, 100% 15%, 100% 85%, 85% 100%, 15% 100%, 0 85%, 0 15%);
}

.step h3 {
  font-size: 16px;
  margin: 3px 0 8px;
}

.step p {
  color: var(--muted);
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
}

.rules-section {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 100px;
  padding: 100px 0 120px;
}

.rules-list {
  border-top: 1px solid var(--border);
}

.rule {
  min-height: 84px;
  display: grid;
  grid-template-columns: 55px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.rule span {
  color: var(--red);
  font-family: "Russo One";
  font-size: 12px;
}

.rule p {
  color: #c1c1c7;
  line-height: 1.55;
  font-size: 13px;
  margin: 0;
}

.join-section {
  width: min(calc(100% - 40px), var(--max));
  min-height: 430px;
  margin-bottom: 40px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(222,29,49,.25);
  background: #120a0d;
}

.join-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(111, 3, 15, .64), rgba(9,9,11,.92)),
    repeating-linear-gradient(45deg, transparent 0 32px, rgba(255,255,255,.025) 33px 34px);
}

.join-bg::before, .join-bg::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(233,34,54,.13);
  transform: rotate(45deg);
}

.join-bg::before {
  left: -300px;
  top: -170px;
}

.join-bg::after {
  right: -300px;
  bottom: -170px;
}

.join-content {
  z-index: 1;
  text-align: center;
  padding: 60px 20px;
}

.join-content h2 {
  margin-bottom: 15px;
}

.join-content p {
  margin-bottom: 26px;
}

.primary-button.large {
  margin: auto;
  min-width: 265px;
  align-items: center;
}

.copy-message {
  color: #73e391;
  font-size: 12px;
  font-weight: 700;
  height: 18px;
  margin-top: 13px;
  opacity: 0;
  transform: translateY(5px);
  transition: .2s ease;
}

.copy-message.show {
  opacity: 1;
  transform: translateY(0);
}

footer {
  width: min(calc(100% - 40px), var(--max));
  min-height: 110px;
  margin: auto;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #686871;
  font-size: 11px;
}

.footer-brand {
  font-size: 15px;
}

.footer-brand .brand-mark {
  width: 31px;
  height: 31px;
}

@media (max-width: 900px) {
  .site-header {
    height: 72px;
  }

  .menu-button {
    width: 40px;
    height: 40px;
    display: grid;
    place-content: center;
    gap: 5px;
    cursor: pointer;
  }

  .menu-button span {
    display: block;
    width: 23px;
    height: 2px;
    background: white;
  }

  nav {
    position: absolute;
    display: none;
    top: 64px;
    left: 0;
    right: 0;
    padding: 18px;
    background: #101115;
    border: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  nav.open {
    display: flex;
  }

  nav a {
    padding: 15px 8px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 80px 0 100px;
  }

  .hero-card {
    transform: none;
    max-width: 620px;
    width: 100%;
  }

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

  .steps-section, .rules-section {
    grid-template-columns: 1fr;
    gap: 55px;
  }
}

@media (max-width: 580px) {
  .site-header, .section, .hero, .join-section, footer {
    width: min(calc(100% - 24px), var(--max));
  }

  .hero {
    min-height: auto;
    gap: 55px;
    padding-top: 64px;
  }

  h1 {
    font-size: 51px;
  }

  h2 {
    font-size: 39px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .primary-button, .secondary-button {
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .server-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 23px;
  }

  .server-strip .divider {
    display: none;
  }

  .server-stat:last-child {
    grid-column: 1 / -1;
  }

  .world-art {
    height: 285px;
  }

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

  .intro-section {
    padding-top: 80px;
  }

  .steps-section, .rules-section {
    padding: 80px 0;
  }

  .rules-section {
    gap: 40px;
  }

  footer {
    padding: 30px 0;
    flex-direction: column;
    gap: 18px;
    text-align: center;
  }
}
