/* Global Styles */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to bottom, #0d0d0d, #1b1b1b);
    color: #f5f5f5;
    overflow-x: hidden;
    position: relative;
  }
  
  /* Background ehhh.... */
  body::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: url('omori.webp') repeat;
    opacity: 0.1;
    animation: drift 120s linear infinite;
    pointer-events: none;
    z-index: -1;
  }
  
  @keyframes drift {
    0% { background-position: 0 0; }
    100% { background-position: 10000px 5000px; }
  }
  
  a {
    color: #ff6b81;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  /* Header Gives good Head*/
  header {
    background-color: rgba(255, 255, 255, 0.85);
    padding: 50px 30px;
    text-align: center;
    border-bottom: 2px solid #ff6b81;
    backdrop-filter: blur(5px);
    background-image: url('omoriheader.png');
    background-size: cover;
    background-position: center;
  }
  header ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    display: flex;
    justify-content: center;
    gap: 30px;
    text-decoration: none;
  }
  header ul li {
    font-size: 1.1rem;
    color: #ff6b81;
    transition: color 0.3s;
  }
  
  header h1 {
    font-size: 3rem;
    margin: 0;
    color: #ff6b81;
    font-family: 'Courier New', Courier, monospace;
    text-shadow: 0 0 20px #ff6b81;
    animation: glow 2s infinite alternate;
  }
  
  header p {
    font-size: 1.2rem;
    color: #ffffff;
    margin-top: 10px;
    opacity: 0.8;
  }
  
  @keyframes glow {
    0% { text-shadow: 0 0 10px #4c0357; }
    100% { text-shadow: 0 0 30px #49034e; }
  }
  
  /* Main Content */
  main {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
  }
  
  section {
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards;
  }
  
  section:nth-of-type(1) { animation-delay: 0.3s; }
  section:nth-of-type(2) { animation-delay: 0.6s; }
  
  @keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
  }
  
  h2 {
    color: #ff6b81;
    margin-bottom: 20px;
    border-bottom: 2px solid #ff6b81;
    display: inline-block;
    padding-bottom: 5px;
  }
  
  /* Trailer Video */
  .trailer {
    text-align: center;
  }
  
  .trailer-video {
    width: 100%;
    max-width: 800px;
    height: 450px;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(255, 107, 129, 0.6);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .trailer-video:hover {
    transform: scale(1.03);
    box-shadow: 0 0 50px rgba(255, 107, 129, 0.9);
  }
  
  /* Summary */
  .summary {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ddd;
  }
  
  /* Footer */
  footer {
    background-color: rgba(44,44,44,0.85);
    text-align: center;
    padding: 20px;
    border-top: 2px solid #ff6b81;
    font-size: 0.9rem;
    color: #aaa;
    backdrop-filter: blur(5px);
  }
  
  
  .btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #ff6b81;
    color: #fff;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s;
    margin-top: 20px;
  }
  
  .btn:hover {
    background-color: #ff4c61;
    transform: scale(1.05);
  }
  