/* Base styling */
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', 'Noto Sans JP', sans-serif;
  background: linear-gradient(120deg, #1b1f29, #2a2f45);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

.title {
  margin-top: 40px;
  font-size: 2.5rem;
  text-align: center;
  background: linear-gradient(to right, #00d2ff, #3a47d5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Button Container */
.button-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 40px 20px;
  max-width: 900px;
}

/* Individual Button Style */
.menu-button {
  font-size: 14px;
  font-weight: 600;
  padding: 12px 18px;
  background: linear-gradient(145deg, #252b3a, #1e2230);
  color: #ffffff;
  border: 1px solid #3e4c63;
  border-radius: 16px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 255, 255, 0.2);
  transition: all 0.3s ease-in-out;
  min-width: 160px;
  text-shadow: 0 0 4px rgba(0,0,0,0.4);
}

/* Hover Effect */
.menu-button:hover {
  transform: scale(1.05);
  background: linear-gradient(145deg, #3a3f52, #2b3045);
  box-shadow: 0 0 12px #00f7ffb2;
  color: #00f7ff;
}

/* Responsive */
@media (max-width: 768px) {
  .menu-button {
    font-size: 13px;
    padding: 10px 14px;
    min-width: 140px;
  }
  .title {
    font-size: 1.8rem;
  }
.anime-info button {
  background-color: #ff4d4d;
  color: white;
  padding: 10px 20px;
  font-size: 18px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  margin-bottom: 20px;
}

.anime-card {
  background-color: #1f1f1f;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 15px;
  color: #fff;
}
  .gallery h2 {
  font-family: 'Poppins', sans-serif;
  color: #ff4081;
  text-align: center;
  margin-bottom: 20px;
}

.gallery .images h3 {
  margin-top: 10px;
  color: #fff;
}

.gallery .images p {
  font-size: 14px;
  color: #ccc;
}
.hero-title {
  text-align: center;
  padding: 60px 20px 30px;
  background: radial-gradient(circle at center, #1e1e30, #0f0f1c);
}

.main-heading {
  font-family: 'Orbitron', 'Kanit', 'Poppins', sans-serif;
  font-size: 3rem;
  color: #ffccff;
  text-shadow: 0 0 12px #ff99ff, 0 0 20px #cc66ff;
  letter-spacing: 3px;
  margin-bottom: 10px;
  animation: neonPulse 3s infinite;
}

.sub-heading {
  font-family: 'Kanit', 'Poppins', sans-serif;
  font-size: 1.2rem;
  color: #ccccff;
  letter-spacing: 1px;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
  font-style: italic;
  opacity: 0.9;
}

@keyframes neonPulse {
  0% {
    text-shadow: 0 0 8px #ff66cc, 0 0 14px #ff66cc;
  }
  50% {
    text-shadow: 0 0 18px #ff99ff, 0 0 28px #ff66cc;
  }
  100% {
    text-shadow: 0 0 8px #ff66cc, 0 0 14px #ff66cc;
  }
}

