/* ===== Global Page Setup ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== Background + Text ===== */
body {
  background: #000000;   /* solid professional black */
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  min-height: 100vh;
}

/* ===== Page Layout ===== */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding-top: 30px;
}

/* ===== Game Cards (if you use them) ===== */
.game {
  background: #111;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 15px;
  transition: 0.2s;
}

.game:hover {
  background: #1c1c1c;
  transform: scale(1.02);
  cursor: pointer;
}

/* ===== Links stay visible ===== */
a {
  color: white;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

