body {
  background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
  font-family: 'Comic Sans MS', 'Comic Sans', cursive, sans-serif;
  margin: 0;
  padding: 0;
  color: #222;
}

header {
  background: repeating-linear-gradient(45deg, #ff00cc, #3333ff 20px, #00ffcc 40px);
  color: #fff;
  text-align: center;
  padding: 2rem 1rem 1rem 1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  border-bottom: 6px solid #ffcc00;
}

h1 {
  font-size: 3rem;
  letter-spacing: 2px;
  text-shadow: 2px 2px 0 #ffcc00, 4px 4px 0 #3333ff;
  margin: 0 0 0.5rem 0;
}

.subtitle {
  font-size: 1.3rem;
  color: #ffcc00;
  text-shadow: 1px 1px 0 #3333ff;
  margin-bottom: 0;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 2rem 0;
}

.games-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  width: 100%;
  max-width: 900px;
}

.game-card {
  background: linear-gradient(135deg, #fff700 0%, #ff6ec4 100%);
  border: 4px solid #3333ff;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  padding: 1.5rem 2rem;
  min-width: 250px;
  max-width: 320px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.game-card:hover {
  transform: scale(1.05) rotate(-2deg);
  box-shadow: 0 12px 32px rgba(51,51,255,0.25);
  z-index: 2;
}

.game-title {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  color: #3333ff;
  text-decoration: none;
  margin-bottom: 0.5rem;
  text-shadow: 1px 1px 0 #ffcc00, 2px 2px 0 #ff00cc;
  transition: color 0.2s;
}

.game-title:hover {
  color: #ff00cc;
  text-decoration: underline wavy #ffcc00 2px;
}

.game-desc {
  font-size: 1.1rem;
  color: #222;
  margin: 0.5rem 0 0 0;
  text-shadow: 1px 1px 0 #fff700;
}

footer {
  background: #3333ff;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  font-size: 1rem;
  border-top: 6px solid #ffcc00;
  margin-top: 2rem;
  letter-spacing: 1px;
  text-shadow: 1px 1px 0 #ff00cc;
}

@media (max-width: 700px) {
  .games-list {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .game-card {
    min-width: 180px;
    max-width: 95vw;
    padding: 1rem 0.5rem;
  }
  h1 {
    font-size: 2rem;
  }
} 