/* Remisae Arcade – Pink & Black Theme */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background-color: #000;
  color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.container {
  text-align: center;
  max-width: 500px;
  width: 100%;
}

h1 {
  color: #ff1493;  /* Hot pink */
  margin-bottom: 30px;
  font-size: 2.8rem;
  text-shadow: 0 0 10px #ff1493;
}

p {
  margin: 20px 0;
  font-size: 1.3rem;
  line-height: 1.6;
}

.games {
  margin: 50px 0;
}

.game-btn {
  display: block;
  background: #ff1493;
  color: white;
  padding: 18px 40px;
  margin: 18px auto;
  border-radius: 50px;
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  width: 80%;
  max-width: 400px;
  box-shadow: 0 6px 20px rgba(255, 20, 147, 0.4);
  transition: all 0.3s ease;
}

.game-btn:hover {
  background: #ff45b3;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 20, 147, 0.6);
}

.small {
  margin-top: 60px;
  color: #888;
  font-size: 0.9rem;
}