body{
  background-color: black;
  color: white;
}
a {
 color: orange;
 text-decoration: none;
 transition: color 0.3s ease;
}
a:hover {
  color:#00ff66;
  text-decoration: underline;
  text-shadow: 0 0 8px #32cd32;
}
.search-container {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2b2b2b;
  padding: 8px 12px;
  border-radius: 20px;
  width: 90%;
  max-width: 500px;
  margin: 10px auto;
}

.search-icon {
  color: white;
  margin-right: 8px;
}

.search-container input {
  flex: 1;
  padding: 8px;
  border: none;
  background: transparent;
  color: white;
  outline: none;
}

.search-container {
  background-color: transparent;
  color: white;
  border: none;
  border-radius: 15px;
  cursor: pointer;
}
  

.anime-container {
 display: flex;
 flex-wrap: wrap;
 gap: 20px;
 justify-content: center;
 padding: 10px;
}

.anime-card {
  width: 22%;
  text-align: center;
  background-color: #111;
  border-radius: 8px;
}
.anime-card img{
  width: 100%;
  transition: transform 0.3s ease-in-out;
  border-radius: 8px;
}

.anime-card p a{
  color: orange;
  text-decoration:none;
}
.anime-card:hover img {
  transform: scale(1.2);
}

.new-year-banner {
    background: linear-gradient(90deg, #ff9a9e, #fad0c4);
    padding: 30px;
    text-align: center;
    animation: fadeIn 2s ease-in-out;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
  }

  .new-year-banner h1 {
    font-size: 40px;
    color: #2c3e50;
    animation: bounce 2s infinite;
  }

  .new-year-banner p {
    font-size: 20px;
    color: #34495e;
    margin-top: 10px;
  }

  @keyframes bounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
    
  
  
  
  
