body {
    margin: 0;
    font-family: 'Cinzel', 'Georgia', serif;
    background: radial-gradient(circle at center, #1a1a1a 0%, #0b0b0b 60%, #000000 100%);
    color: #d6d0c4;
    overflow-x: hidden;
    position: relative;
  }
  
  /* Dark Fog / Ash Effect */
  body::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: url('dsbackground.jpg') repeat;
    opacity: 0.08;
    animation: drift 200s linear infinite;
    pointer-events: none;
    z-index: -1;
  }
  
  @keyframes drift {
    0% { background-position: 0 0; }
    100% { background-position: 8000px 4000px; }
  }
  
  a {
    color: #c9a34a;
    text-decoration: none;
  }
  
  a:hover {
    color: #f5d27a;
    text-shadow: 0 0 10px #c9a34a;
  }
  
  /* Header */
  header {
    background: linear-gradient(to bottom, rgba(20,20,20,0.95), rgba(10,10,10,0.95)),
                url('Dsheader.jpg') center/cover no-repeat;
    padding: 80px 20px;
    text-align: center;
    border-bottom: 1px solid #3a2f1f;
  }
  header ul{
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    display: flex;
    justify-content: center;
    gap: 30px;}
  
  header h1 {
    font-size: 3.2rem;
    margin: 0;
    color: #c9a34a;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(201,163,74,0.6);
    animation: emberGlow 3s infinite alternate;
  }
  
  header p {
    font-size: 1.2rem;
    color: #aaa;
    margin-top: 15px;
    font-style: italic;
  }
  
  @keyframes emberGlow {
    0% { text-shadow: 0 0 10px #5a3b00; }
    100% { text-shadow: 0 0 25px #c9a34a; }
  }
  
  /* Main Content */
  main {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
  }
  
  section {
    margin-bottom: 80px;
    padding: 30px;
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid #2e2e2e;
    border-left: 4px solid #c9a34a;
    box-shadow: 0 0 20px rgba(0,0,0,0.8);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.2s 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: #c9a34a;
    margin-bottom: 20px;
    font-weight: normal;
    border-bottom: 1px solid #3a2f1f;
    padding-bottom: 5px;
  }
  
  /* Trailer Video */
  .trailer {
    text-align: center;
  }
  
  .trailer-video {
    width: 100%;
    max-width: 800px;
    height: 450px;
    border-radius: 4px;
    border: 2px solid #3a2f1f;
    box-shadow: 0 0 25px rgba(0,0,0,0.9);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    filter: brightness(0.85) contrast(1.1);
  }
  
  .trailer-video:hover {
    transform: scale(1.02);
    box-shadow: 0 0 40px rgba(201,163,74,0.4);
  }
  
  /* Summary */
  .summary {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #b8b2a6;
  }
  
  /* Footer */
  footer {
    background: #0a0a0a;
    text-align: center;
    padding: 25px;
    border-top: 1px solid #3a2f1f;
    font-size: 0.9rem;
    color: #666;
  }
  
  /* Dark Souls Button */
  .btn {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(to bottom, #3a2a15, #1a1208);
    color: #c9a34a;
    border: 1px solid #5a3b00;
    border-radius: 3px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-top: 20px;
  }
  
  .btn:hover {
    background: linear-gradient(to bottom, #5a3b00, #2a1b0d);
    box-shadow: 0 0 15px rgba(201,163,74,0.5);
    transform: scale(1.05);
  }
  