*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #0e0e14;
  color: #c8c8d8;
  line-height: 1.7;
  overflow-x: hidden;
}

#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.page {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Header ---- */
header {
  padding: 120px 0 60px;
  text-align: center;
}

header h1 {
  font-family: 'Press Start 2P', cursive;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  color: #7c6cff;
  margin-bottom: 20px;
}

header p {
  color: #8888a0;
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto;
}

/* ---- Modes ---- */
.mode {
  margin-bottom: 32px;
}

.mode h3 {
  font-family: 'Press Start 2P', cursive;
  font-size: 0.7rem;
  color: #c8c8d8;
  margin-bottom: 8px;
}

.mode p {
  margin-bottom: 14px;
}

.mode img {
  width: 100%;
  display: block;
  border-radius: 6px;
  border: 1px solid #2a2a3a;
}

.screenshot-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.screenshot-row img {
  width: 100%;
  display: block;
  border-radius: 6px;
  border: 1px solid #2a2a3a;
}

/* ---- Content sections ---- */
.about {
  padding: 40px 0;
  border-top: 1px solid #1e1e2a;
}

.about h2 {
  font-family: 'Press Start 2P', cursive;
  font-size: 0.85rem;
  color: #7c6cff;
  margin-bottom: 20px;
}

.about p {
  margin-bottom: 12px;
}

.about p:last-child {
  margin-bottom: 0;
}

.about strong {
  color: #e0e0ec;
}

.about ul {
  list-style: none;
  padding: 0;
}

.about ul li {
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.about ul li::before {
  content: '>';
  position: absolute;
  left: 0;
  color: #7c6cff;
  font-family: 'Press Start 2P', cursive;
  font-size: 0.55rem;
  top: 10px;
}

/* ---- Coming Soon ---- */
.coming-soon-mode {
  position: relative;
}

.coming-soon-badge {
  display: inline-block;
  font-family: 'Press Start 2P', cursive;
  font-size: 0.5rem;
  color: #0e0e14;
  background: #7c6cff;
  padding: 4px 8px;
  border-radius: 4px;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.coming-soon-mode img {
}

/* ---- Trailer ---- */
.trailer {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: 6px;
  display: block;
}

.trailer-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px dashed #2a2a3a;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #44445a;
  font-size: 0.9rem;
}

/* ---- Links as Buttons ---- */
a {
  display: inline-block;
  color: #7c6cff;
  background: rgba(124, 108, 255, 0.1);
  border: 1px solid rgba(124, 108, 255, 0.35);
  border-radius: 20px;
  padding: 5px 14px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

a:hover {
  background: rgba(124, 108, 255, 0.22);
  border-color: #7c6cff;
  color: #a090ff;
}

/* ---- Footer ---- */
footer {
  padding: 60px 0 40px;
  border-top: 1px solid #1e1e2a;
  text-align: center;
}

footer p {
  color: #44445a;
  font-size: 0.8rem;
}

/* ---- Mobile ---- */
@media (max-width: 600px) {
  .page {
    padding: 0 16px;
  }

  header {
    padding: 80px 0 40px;
  }

  .screenshot-row {
    grid-template-columns: 1fr;
  }
}
