:root {
    --bg-color: #1a1510;
    --text-color: #d4c4a8;
    --highlight-color: #c98b22;
    --border-color: #4a3a2c;
    --container-bg: rgba(26, 21, 16, 0.85);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Courier Prime', 'Courier New', Courier, monospace;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Subtle parchment/grain effect */
.parchment-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)" opacity="0.05"/%3E%3C/svg%3E');
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 800px;
    margin: 40px auto;
    padding: 40px;
    background-color: var(--container-bg);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 2px dashed var(--border-color);
    padding-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
    color: var(--highlight-color);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1rem;
    opacity: 0.8;
}

.highlight {
    color: var(--highlight-color);
    font-weight: bold;
}

h2 {
    font-size: 1.5rem;
    margin-top: 35px;
    margin-bottom: 15px;
    color: var(--highlight-color);
    letter-spacing: 1px;
}

.bracket {
    color: var(--border-color);
}

p, ul {
    margin-bottom: 20px;
}

ul {
    padding-left: 25px;
}

li {
    margin-bottom: 10px;
}

strong {
    color: #e8dbbc;
}

a {
    color: var(--highlight-color);
    text-decoration: none;
    border-bottom: 1px dotted var(--highlight-color);
    transition: color 0.3s ease;
}

a:hover {
    color: #e8dbbc;
}

.contact-info {
    background-color: rgba(74, 58, 44, 0.2);
    padding: 15px;
    border-left: 4px solid var(--highlight-color);
    border-radius: 0 4px 4px 0;
}

footer {
    margin-top: 50px;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.6;
    border-top: 1px dashed var(--border-color);
    padding-top: 20px;
}

@media (max-width: 768px) {
    .container {
        margin: 20px;
        padding: 20px;
    }
    h1 {
        font-size: 2rem;
    }
}
