* { box-sizing: border-box; }

html, body { margin: 0; min-height: 100%; }

body {
  background: #101010;
  color: #f2f2f2;
  font-family: "Silkscreen", monospace;
  image-rendering: pixelated;
}

.page {
  width: 100%;
  min-height: 100vh;
  padding: 92px 24px 70px;
}

.hero { text-align: center; }

.logo {
  width: 78px;
  height: 78px;
  object-fit: contain;
  display: block;
  margin: 0 auto 13px;
  image-rendering: pixelated;
}

h1 {
  margin: 0;
  font-size: 29px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
}

.subtitle {
  margin: 18px 0 9px;
  color: #858585;
  font-size: 12px;
}

.server-link {
  color: #006ebd;
  font-size: 12px;
  text-decoration: none;
}

.server-link:hover { color: #1599ff; }

.ranks, .shards {
  max-width: 865px;
  margin-left: auto;
  margin-right: auto;
}

.ranks { margin-top: 88px; }

.shards { margin-top: 54px; }

section h2 {
  text-align: center;
  margin: 0 0 21px;
  font-size: 16px;
  font-weight: 400;
}

.rank-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.rank-card {
  min-height: 216px;
  background: #1e1e1e;
  border: 1px solid #353535;
  border-radius: 15px;
  padding: 23px 24px 24px;
}

.rank-card h3 {
  text-align: center;
  margin: 0 0 19px;
  font-size: 24px;
  font-weight: 400;
}

.rank-card h3 span { color: #0797f4; }

.rank-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.rank-card li {
  color: #777;
  font-size: 9px;
  line-height: 22px;
  border-bottom: 1px solid #2c2c2c;
  position: relative;
  padding-left: 14px;
}

.rank-card li::before {
  content: "•";
  color: #0098ff;
  position: absolute;
  left: 0;
  font-size: 13px;
}

.claim-btn {
  width: 100%;
  height: 38px;
  border-radius: 8px;
  border: 1px solid #19496a;
  background: #1b252b;
  color: #009cff;
  font-family: inherit;
  font-size: 11px;
  cursor: pointer;
  transition: .15s ease;
}

.claim-btn:hover {
  background: #202f38;
  border-color: #086fae;
}

.shard-grid {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.shard-card {
  width: 100%;
  max-width: 280px;
  height: 292px;
  background: #1e1e1e;
  border: 1px solid #353535;
  border-radius: 15px;
  padding: 17px 24px 24px;
  text-align: center;
}

.shard-card img {
  width: 100%;
  height: 155px;
  object-fit: contain;
  image-rendering: pixelated;
  display: block;
  margin: 0 auto 2px;
}

.shard-card h3 {
  margin: 0 0 19px;
  color: #c052ff;
  font-size: 16px;
  font-weight: 700;
}

.shard-card .claim-btn {
  background: transparent;
  border-color: #3a3a3a;
  color: #ddd;
}

.shard-card .claim-btn:hover {
  background: #252525;
  border-color: #555;
  color: #fff;
}

@media (max-width: 800px) {
  .page { padding-top: 55px; }
  .rank-cards, .shard-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }
  .ranks { margin-top: 65px; }
}


.rank-note {
  max-width: 865px;
  margin: 42px auto 0;
  text-align: center;
  color: #777;
  font-size: 10px;
  line-height: 18px;
}


.rank-card {
  transition: background .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.rank-card:hover {
  background: #18242c;
  border-color: #008cff;
  box-shadow: 0 0 0 1px rgba(0, 140, 255, .28), 0 0 22px rgba(0, 140, 255, .12);
}

.shard-card {
  transition: background .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.shard-card:hover {
  background: #251b2b;
  border-color: #a43cff;
  box-shadow: 0 0 0 1px rgba(164, 60, 255, .28), 0 0 22px rgba(164, 60, 255, .12);
}
