* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    background-color: #1c1c1c;
    color: white;
    line-height: 1.6;
  }
  
  #loading-screen {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 9999;
    overflow: hidden;
  }
  
  .loading-slide {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #ff2a68;
    animation: slide 2s ease-in-out;
  }
  
  .loading-text {
    font-size: 2rem;
    color: white;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  @keyframes slide {
    0% {
      width: 0;
    }
    100% {
      width: 100%;
    }
  }
  
  #content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }
  
  header {
    background-color: #333;
    padding: 15px;
    text-align: center;
    width: 100%;
  }
  
  header h1 {
    font-size: 2.5rem;
    color: #fff;
  }
  
  nav {
    margin-top: 15px;
  }
  
  nav a {
    color: #fff;
    text-decoration: none;
    margin: 10px;
    font-size: 1.1rem;
  }
  
  nav a:hover {
    text-decoration: underline;
  }
  
  .anime-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .anime-card {
    width: 300px;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }
  
  .anime-card h2 {
    margin-bottom: 10px;
  }
  
  .anime-card p {
    font-size: 1rem;
    line-height: 1.4;
  }
  