body {
    margin: 0;
    font-family: "Garamond", "Times New Roman", serif;
    background: linear-gradient(to bottom, #0a0a0a, #1a0000);
    color: #e8e0d0;
    overflow-x: hidden;
    position: relative;
  }
  
  /* Subtle drifting dust / paper texture */
  body::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: url('Lorbackgorund.webp') repeat;
    opacity: 0.06;
    animation: drift 180s linear infinite;
    pointer-events: none;
    z-index: -1;
  }
  
  @keyframes drift {
    0% { background-position: 0 0; }
    100% { background-position: 8000px 4000px; }
  }
  
  a {
    color: #b22222;
    text-decoration: none;
    transition: 0.3s;
  }
  
  a:hover {
    color: #fcd80d;
    text-shadow: 0 0 8px #b89705;
  }
  
  /* Header */
  header {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(20,0,0,0.9)),
                url('LorHeader.webp') center/cover no-repeat;
    padding: 70px 20px;
    text-align: center;
    border-bottom: 2px solid #8b7d00;
    backdrop-filter: blur(3px);
  }
  header ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    display: flex;
    justify-content: center;
    gap: 30px;
    text-decoration: none;
  }
  
  header h1 {
    font-size: 3.2rem;
    margin: 0;
    color: #d4af37; /* gold */
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(139, 0, 0, 0.8);
    animation: glow 3s infinite alternate;
  }
  
  header p {
    font-size: 1.2rem;
    color: #c9b37e;
    margin-top: 12px;
    font-style: italic;
    opacity: 0.9;
  }
  
  @keyframes glow {
    0% { text-shadow: 0 0 10px #4b0000; }
    100% { text-shadow: 0 0 30px #8b0000; }
  }
  
  /* Main Content */
  main {
    max-width: 1000px;
    margin: 50px auto;
    padding: 0 20px;
  }
  
  section {
    margin-bottom: 70px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards;
  }
  
  section:nth-of-type(1) { animation-delay: 0.4s; }
  section:nth-of-type(2) { animation-delay: 0.8s; }
  
  @keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
  }
  
  h2 {
    color: #d4af37;
    margin-bottom: 20px;
    border-bottom: 2px solid #8b0000;
    display: inline-block;
    padding-bottom: 6px;
    letter-spacing: 1px;
  }
  
  /* Trailer Video */
  .trailer {
    text-align: center;
  }
  
  .trailer-video {
    width: 100%;
    max-width: 800px;
    height: 450px;
    border-radius: 6px;
    box-shadow: 0 0 40px rgba(253, 223, 25, 0.7);
    transition: transform 0.4s, box-shadow 0.4s;
  }
  
  .trailer-video:hover {
    transform: scale(1.02);
    box-shadow: 0 0 60px rgba(246, 242, 11, 0.9);
  }
  
  /* Summary */
  .summary {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #ddd4c2;
  }
  
  /* Footer */
  footer {
    background-color: rgba(20, 0, 0, 0.9);
    text-align: center;
    padding: 25px;
    border-top: 2px solid #8b0000;
    font-size: 0.9rem;
    color: #b8a98c;
  }
  
  /* Button */
  .btn {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(145deg, #8b0000, #4b0000);
    color: #f5e6c8;
    border-radius: 4px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: 0.3s;
    margin-top: 25px;
    border: 1px solid #b22222;
  }
  
  .btn:hover {
    background: linear-gradient(145deg, #b22222, #6b0000);
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(178, 34, 34, 0.8);
  }
  