* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: #0b1020;
  color: #e8edf7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

.header,
.footer {
  padding: 20px 24px;
  border-color: rgba(255,255,255,0.08);
}

.header {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  color: #94a3b8;
  text-align: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 600;
}

.brand img {
  width: 28px;
  height: 28px;
}

.main {
  width: min(100% - 32px, 980px);
  margin: 0 auto;
  padding: 64px 0;
  flex: 1;
}

.hero {
  text-align: center;
  margin-bottom: 48px;
}

.hero h1 {
  margin: 0 0 10px;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  line-height: 1.05;
}

.hero p {
  margin: 0;
  color: #9aa7bd;
  font-size: 1.05rem;
}

.games {
  display: grid;
  gap: 18px;
}

.game-card {
  display: block;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  border-radius: 16px;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.game-card:hover {
  transform: translateY(-2px);
  border-color: rgba(96,165,250,0.6);
  background: rgba(255,255,255,0.05);
}

.game-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.game-card h2 {
  margin: 0;
  font-size: 1.35rem;
}

.game-card p {
  margin: 0 0 14px;
  color: #9aa7bd;
  line-height: 1.7;
}

.open-link {
  color: #60a5fa;
  font-weight: 600;
}

.status {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  text-transform: capitalize;
}

.status-online {
  color: #bbf7d0;
  background: rgba(34,197,94,0.14);
}

.status-planned {
  color: #fde68a;
  background: rgba(234,179,8,0.14);
}

.status-maintenance {
  color: #fecaca;
  background: rgba(239,68,68,0.14);
}
