body.body {
  background: linear-gradient(to bottom, black, #1f2937);
  color: white;
  min-height: 100vh;
  font-family: sans-serif;
  margin: 0;
}

.header {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: black;
  border-bottom: 1px solid #7dd3fc;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.logo {
  font-size: 1.875rem;
  font-weight: bold;
  color: #7dd3fc;
}

.nav {
  display: flex;
  gap: 1.5rem;
}

.nav-link {
  font-size: 1.125rem;
  color: #93c5fd;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #bfdbfe;
}

.nav-link.active {
  color: #7dd3fc;
}

.main {
  padding: 2rem;
  max-width: 96rem;
  margin: auto;
  text-align: center;
}

.title {
  font-size: 2.25rem;
  font-weight: bold;
  color: #bfdbfe;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(125, 211, 252, 0.4);
}

.description {
  color: #dbeafe;
  font-size: 1.125rem;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.games-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  justify-items: center;
}

.game-card {
  background: #1f2937;
  padding: 1.8rem;
  border-radius: 1rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
  border: 1px solid #7dd3fc;
  width: 100%;
  max-width: 220px;
  transition: all 0.3s ease;
  text-align: center;
}

.game-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(125, 211, 252, 0.5);
  background-color: #1e3a8a;
}

.game-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #7dd3fc;
  margin-bottom: 0.5rem;
}

.game-text {
  color: #dbeafe;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
  line-height: 1.4;
}

.game-link {
  display: inline-block;
  background-color: #2563eb;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.5);
}

.game-link:hover {
  background-color: #1e40af;
  box-shadow: 0 0 15px rgba(125, 211, 252, 0.8);
  transform: scale(1.08);
}

.footer {
  background: black;
  text-align: center;
  padding: 1.5rem 0;
  margin-top: 4rem;
  color: #bfdbfe;
  border-top: 1px solid #7dd3fc;
}

.footer-copy {
  margin-bottom: 0.5rem;
}

.footer-note {
  font-size: 0.875rem;
}
