@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500&display=swap');

body {
  font-family: 'Orbitron', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #000000;
  color: #39ff14;
  background-size: cover;
  background-position: center;
  min-width: 100vw;
  min-height: 100vh;
}

header {
  background-color: rgba(0, 0, 0, 0.9);
  color: #00ffff;
  text-align: center;
  padding: 20px 0;
  font-size: 36px;
  font-family: 'Orbitron', sans-serif;
  margin-top: 50px;
  text-transform: uppercase;
  text-shadow: 0 0 8px #00ffff;
}

.menu-toggle {
  font-size: 30px;
  cursor: pointer;
  padding: 15px;
  position: absolute;
  top: 20px;
  left: 20px;
  color: #39ff14;
  text-shadow: 0 0 8px #39ff14;
}

.menu {
  position: absolute;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100%;
  background-color: #000000;
  transition: left 0.3s;
  box-shadow: 2px 2px 15px rgba(0, 255, 255, 0.7);
}

.menu.open {
  left: 0;
}

.menu ul {
  padding: 20px;
  list-style-type: none;
}

.menu ul li {
  margin: 20px 0;
}

.menu ul li a {
  color: #00ffff;
  text-decoration: none;
  font-size: 20px;
  text-shadow: 0 0 6px #00ffff;
}

.anime-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  justify-content: center;
  padding: 20px;
  max-width: 90%;
  margin: 0 auto;
}

.anime {
  background-color: rgba(0, 0, 0, 0.9);
  padding: 10px;
  text-align: center;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 255, 255, 0.6);
  transition: transform 0.3s, box-shadow 0.3s;
}

.anime:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 255, 255, 0.9);
}

.anime img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.anime h2 {
  font-size: 18px;
  margin-top: 10px;
  color: #ff00ff;
  text-transform: uppercase;
  text-shadow: 0 0 6px #ff00ff;
}

.anime-details {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  color: #39ff14;
  padding: 50px;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow-y: auto;
}

.anime-details img {
  max-width: 300px;
  margin-bottom: 20px;
}

.anime-details button {
  background-color: #00ffff;
  color: #000;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  box-shadow: 0 0 10px #00ffff;
}

.anime-details button:hover {
  background-color: #00ccff;
}

.watch-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ff00ff;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 20px;
  box-shadow: 0 0 12px #ff00ff;
}

.watch-button:hover {
  background-color: #ff33ff;
}

.social-share {
  margin-top: 20px;
}

.social-share a {
  margin: 0 10px;
  display: inline-block;
}

.social-share img {
  width: 40px;
  height: 40px;
}

.button {
  background-color: #00ffff;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 18px;
  color: #000;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 0 12px #00ffff;
}

.button:hover {
  background-color: #00ccff;
}
