/* Matching the botaa.org theme */
body {
    background-color: #09060f; /* --void */
    color: #f0e6d0; /* --cream */
    font-family: 'Josefin Sans', sans-serif;
    padding: 50px;
    line-height: 1.6;
}

h1 { 
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #c9a84c; /* --gold */
    border-bottom: 1px solid rgba(201,168,76,0.2); 
    padding-bottom: 20px;
    margin-bottom: 30px;
}

pre { 
    background: #140826; /* --deep */
    padding: 30px; 
    border-radius: 4px; 
    border: 1px solid #3a1552; /* --purple */
    font-family: 'Josefin Sans', sans-serif;
    font-size: 16px;
}

a { 
    color: #e8c97a; /* --gold-light */
    text-decoration: none; 
    transition: color 0.2s;
}

a:hover { 
    color: #fff9d6; /* --gold-bright */
    text-decoration: underline; 
}

/* Cleanup Nginx default horizontal rules */
hr { border: 0; border-top: 1px solid #3a1552; margin: 20px 0; }

/* Grain effect matching main site */
body::before {
  content:'';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 1000; opacity: 0.35;
}
