  body {
    margin: 0;
    background: linear-gradient(to bottom, #3b0a0a, #6b2b08, #a85c17);
    background-attachment: fixed;
    font-family: "Lato", sans-serif;
    color: #f8f5f0;
    line-height: 1.7;
  }

  .container {
    width: 1024px;
    margin: 0 auto;
    background: rgba(255, 240, 220, 0.05);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    border-radius: 6px;
  }

  header img {
    display: block;
    width: 100%;
    height: auto;
    border-bottom: 2px solid #caa046;
  }

  nav {
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 0;
  }

  nav img {
    margin: 0 5px;
    vertical-align: middle;
    border-radius: 4px;
  }

  .content {
    background: rgba(255, 245, 230, 0.07);
    padding: 20px 40px;
    text-align: justify;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

h1, h2, h3 {
  font-family: "Playfair Display", serif;
  color: #f6e7c9;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
  margin-top: 0;
  position: relative;
}

/* subtle gold accent underline */
h1::after, h2::after, h3::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, transparent, #dcbf72, transparent);
  margin: 10px auto 0;
  opacity: 0.6;
  border-radius: 2px;
}


  .stats {
    background: rgba(202, 160, 70, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 15px 40px;
    font-size: 0.95em;
    text-align: center;
    color: #f6e7c9;
  }

  footer {
    text-align: center;
    font-size: 0.8em;
    color: #d1b57b;
    padding: 10px 0 20px;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  a {
    color: #dcbf72;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
  }

  a:hover {
    color: #ffe9b8;
    border-bottom: 1px solid #ffe9b8;
    text-shadow: 0 0 6px #ffdd99;
  }