* {
  box-sizing: border-box;
  font-family: system-ui, sans-serif;
}

body {
  background: #0f172a;
  color: #e5e7eb;
  display: flex;
  justify-content: center;
  padding: 40px;
}

.app {
  width: 100%;
  max-width: 420px;
}

h1 {
  text-align: center;
  margin-bottom: 16px;
}

button {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 8px;
  background: #2563eb;
  color: white;
  cursor: pointer;
  margin-bottom: 16px;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 8px;
}

/* ligas */
.iron        { background: #1f2933; }
.bronze      { background: #3a2a20; }
.silver      { background: #2f3a44; }
.gold        { background: #4a3b1a; }
.platinum    { background: #1f3d3a; }
.emerald     { background: #1f4a3a; }
.diamond     { background: #1e3a5f; }
.master      { background: #3b1f4a; }
.grandmaster { background: #4a1f2a; }
.challenger  { background: #3a3a1f; }


.pos {
  font-weight: bold;
  color: #94a3b8;
}

.player {
  display: flex;
  flex-direction: column;
}

.name {
  font-size: 14px;
  font-weight: 600;
}

.rank {
  font-size: 12px;
  color: #94a3b8;
}

.loading {
  text-align: center;
  color: #94a3b8;
}
footer {
  margin-top: 24px;
  text-align: center;
  font-size: 12px;
  opacity: 0.6;
}
