:root {
  --bg: #05060a;
  --card: #090b12;
  --border: rgba(255, 255, 255, 0.08);
  --text-main: #f5f5f8;
  --text-muted: #a2a7b6;
  --accent: #f5993d;  /* your orange */
  --accent-soft: rgba(245, 153, 61, 0.12);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text-main);
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
}

main {
  width: 100%;
  max-width: 720px;
  padding: 32px 20px 40px;
}

@media (min-width: 768px) {
  main {
    padding: 48px 24px 56px;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 768px) {
  .stack {
    gap: 40px;
  }
}

/* Hero */

.hero {
  text-align: center;
}

.hero-logo {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  margin: 0 auto 16px;
  background: #11141f;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--border);
}

.hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-name {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 4px;
}

.hero-tagline {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 0 10px;
}

.hero-subtext {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 18px;
  line-height: 1.6;
}

.hero-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 10px;
}

/* Section titles */

.section-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-muted);
  margin: 0 0 4px;
}

.section-subtitle {
  font-size: 16px;
  margin: 0 0 10px;
}

.section-body {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Modifier for the game intro paragraph */

.game-intro {
  margin-top: 12px;
}

/* Cards */

.card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  padding: 16px 16px 18px;
}

@media (min-width: 768px) {
  .card {
    padding: 20px 20px 22px;
  }
}

.card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.card-link:hover {
  text-decoration: none;
}

/* About list */

.about-list {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.about-list li {
  font-size: 14px;
  color: var(--text-muted);
}

/* Game block */

.game-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.game-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #11141f;
  border: 1px solid var(--border);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.game-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.game-name {
  font-size: 17px;
  margin: 0 0 2px;
}

.game-tagline {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

.game-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 8px 0 0;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--accent-soft);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
}

.game-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.game-details {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 4px;
  font-size: 13px;
  color: var(--text-muted);
}

/* Contact */

.contact-list {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: grid;
  gap: 6px;
  font-size: 14px;
  color: var(--text-muted);
}

.contact-list a {
  color: var(--accent);
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}

.social-badges {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.social-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px dashed var(--border);
}

.social-badge-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Handle both img and inline SVG */
.social-badge-icon img,
.social-badge-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}


footer {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
}
