body {
  margin: 0;
  padding: 0;
  background: linear-gradient(180deg, #0b1d54 0%, #3a1a6a 100%);
  font-family: 'Lora', serif;
  color: #eaeaea;
  text-align: center;
}

/* --- LAYOUT CONTAINER --- */
#layout {
  width: 1200px;
  margin: 20px auto;
  border: 1px solid #c8a54b;
  background-color: rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

/* --- HEADER --- */
#header img {
  width: 100%;
  display: block;
}

/* --- NAVIGATION --- */
#nav {
  background-color: rgba(10, 10, 30, 0.6);
  border-top: 1px solid #c8a54b;
  border-bottom: 1px solid #c8a54b;
  padding: 10px 0;
}

#nav a {
  display: inline-block;
  margin: 0 10px;
  padding: 6px 12px;
  color: #d9b85f;
  font-family: 'Cinzel', serif;
  font-size: 16px;
  text-decoration: none;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

#nav a:hover {
  color: #fff;
  text-shadow: 0 0 8px #d9b85f;
}

/* --- CONTENT --- */
#content {
  padding: 30px 60px;
  text-align: justify;
  line-height: 1.6;
  position: relative;
}

/* --- STATS BOX --- */
#stats {
  border: 1px solid #c8a54b;
  padding: 15px 20px;
  font-size: 0.9em;
  float: right;
  width: 250px;
  margin: 10px 0 10px 20px;
  text-align: left;
}

#stats span.label {
  color: #c8a54b;
  font-weight: bold;
}

/* --- FOOTER --- */
#footer {
  clear: both;
  border-top: 1px solid #c8a54b;
  padding: 15px;
  font-size: 13px;
  color: #c8a54b;
}

/* --- LINK STYLING --- */
#content a {
  color: #d9b85f;                 /* gold tone to match your palette */
  text-decoration: none;          /* remove underline for a cleaner look */
  border-bottom: 1px dotted #d9b85f; /* subtle underline alternative */
  transition: all 0.3s ease;      /* smooth hover transition */
}

#content a:hover {
  color: #ffffff;                 /* soft white on hover */
  border-bottom: 1px solid #ffffff;
  text-shadow: 0 0 6px #d9b85f;   /* gentle golden glow effect */
}

#content a:visited {
  color: #c7a54b;        /* muted gold for visited links */
  border-bottom: 1px dotted #c7a54b;
}

#footer a {
  color: #d9b85f;                 /* gold tone to match your palette */
  text-decoration: none;          /* remove underline for a cleaner look */
  border-bottom: 1px dotted #d9b85f; /* subtle underline alternative */
  transition: all 0.3s ease;      /* smooth hover transition */
}

#footer a:hover {
  color: #ffffff;                 /* soft white on hover */
  border-bottom: 1px solid #ffffff;
  text-shadow: 0 0 6px #d9b85f;   /* gentle golden glow effect */
}

#footer a:visited {
  color: #c7a54b;        /* muted gold for visited links */
  border-bottom: 1px dotted #c7a54b;
}