* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  background: #050608;           /* off-black backdrop */
  color: #f9fafb;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

.site-header {
  padding: 1rem 1rem 0;
}

.top-nav {
  display: flex;
  justify-content: flex-end;
  gap: 1.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.top-nav a {
  color: #e5e7eb;
  text-decoration: none;
}

.top-nav a:hover {
  color: #f9fafb;
}

.hero {
  text-align: center;
  padding: 3rem 1.5rem 2rem;
}

/* White pyramid + glowing sun built with CSS */
.logo-mark {
  width: 260px;          /* adjust size as needed */
  margin: 0 auto 1.5rem;
}

.logo-mark img {
  display: block;
  width: 100%;
  height: auto;
}

.site-title,
.site-subtitle {
  font-family: "Times New Roman", "Times", serif;
  letter-spacing: 0.25em;
}

.site-title {
  font-size: 5rem;
  margin-bottom: 0rem;
}

.site-subtitle {
  font-size: 1.9rem;
  margin-bottom: 0.75rem;
}

.tagline {
  font-size: 0.95rem;
  color: #d1d5db;
}

.content {
  max-width: 820px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}

.section {
  margin-bottom: 3rem;
}

.section h3 {
  font-family: "Times New Roman", "Times", serif;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section p {
  margin-bottom: 1rem;
  color: #e5e7eb;
}

.game {
  border-top: 1px solid #111827;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}

.game h4 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.status {
  font-size: 0.85rem;
  color: #9ca3af;
}

.section a {
  color: #f9fafb;
  text-decoration: underline;
}

.section a:hover {
  text-decoration: none;
}

.site-footer {
  border-top: 1px solid #111827;
  padding: 1.5rem 1.5rem 2rem;
  text-align: center;
  font-size: 0.8rem;
  color: #6b7280;
}

@media (max-width: 640px) {
  .top-nav {
    justify-content: center;
    gap: 1rem;
  }

  .logo-mark {
    width: 130px;
    height: 130px;
  }

  .site-title {
    font-size: 1.4rem;
  }
}

.subpage .hero-small {
  padding-top: 2rem;
  padding-bottom: 1rem;
}

.section ul {
  margin: 0 0 1rem 1.2rem;
  list-style: disc;
}

