/* Base styles */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  background-color: #4a90e2;
  color: white;
  padding: 2rem;
  text-align: center;
}

/* Sections */
main {
  padding: 2rem;
}

section {
  margin-bottom: 2rem;
}

h2 {
  color: #4a90e2;
}

/* Games list */
.games ul {
  list-style: disc inside;
  padding-left: 1rem;
}

/* Contact */
a {
  color: #4a90e2;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background-color: #eee;
  font-size: 0.9rem;
}
