/* Reset & Basic Styling */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #1a1a2e;
  color: #ffffff;
  text-align: center;
}

header {
  padding: 20px;
  background: #0f3460;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

h1 {
  margin: 0;
  font-size: 2.5rem;
  color: #fddb3a;
}

p {
  margin-top: 5px;
  font-size: 1.1rem;
  color: #ccc;
}

main {
  padding: 40px 20px;
}

.battle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin-bottom: 30px;
}

.anime {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #16213e;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
  width: 200px;
}

.anime img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 10px;
}

button {
  padding: 10px 20px;
  font-size: 1rem;
  background: #e94560;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: #ff2e63;
}

.vs {
  font-size: 2rem;
  font-weight: bold;
  color: #fddb3a;
}

.next-btn {
  margin-top: 20px;
  background: #0f3460;
}

footer {
  margin-top: 50px;
  padding: 15px;
  background: #0f3460;
  font-size: 0.9rem;
}
