/* Set a black background for the entire body */
body {
  background-color: #000;
  color: white;
  font-family: 'Segoe UI', sans-serif;
}

/* Basic styles for the header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1a1a1a;
  padding: 1rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 2rem;
  text-align: center;
  flex-grow: 1;
  color: #00ffcc;
  text-shadow: 0 0 px #00ffcc;
  background-image: url('your-logo-image.jpg');
  background-size: contain;
  background-repeat: no-repeat;
  height: 50px;
  width: 200px;
}

.search-box {
  padding: 0.5rem;
  border-radius: 1rem;
  border: none;
  outline: none;
  width: 150px;
}

/* Navbar styles */
.navbar {
  display: flex;
  gap: 1rem;
  list-style: none;
}

.navbar a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
}

.navbar a:hover {
  color: #00ffcc;
}

/* Anime section styles */
.anime-section {
  padding: 1rem;
}

.anime-section h2 {
  margin-left: 1rem;
  color: #00ff99;
  border-left: 4px solid #00ffcc;
  padding-left: 0.5rem;
}

/* Anime row and card styles */
.anime-row {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  padding: 1rem;
  scroll-snap-type: x mandatory;
}

.anime-card {
  flex: 0 0 auto;
  width: 160px;
  background: #1a1a1a;
  border-radius: 10px;
  box-shadow: 0 0 10px #00ffcc55;
  scroll-snap-align: start;
  text-align: center;
  transition: transform 0.3s ease;
}

.anime-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #00ffcc;
}

.anime-card img {
  width: 100%;
  border-radius: 10px 10px 0 0;
}

.anime-card p {
  margin: 0;
  padding: 0.5rem;
  font-weight: bold;
  color: #fff;
}

@media (max-width: 768px) {
  .navbar {
    display: none;
  }

footer {
  background-color: #000;
  color: #ccc;
  text-align: center;
  padding: 2rem;
  border-top: 2px solid #00ffcc;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

footer a {
  color: #00ffcc;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.social-links {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.social-links a {
  margin: 0 10px;
  color: #00ffcc;
  font-size: 1.5rem;
  transition: transform 0.3s, color 0.3s;
}

.social-links a:hover {
  color: #00ffff;
  transform: scale(1.2);
}


}
