/* styles.css */
body {
    background-color: #1c1c1c;
    color: #e0e0e0;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Georgia", serif;
    color: #e0e0e0;
    margin-bottom: 0.5em;
}

/* Accent color from user request (muted amber) */
.amber-accent {
    color: #d4a017;
}

a {
    color: #d4a017;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    color: #e0e0e0;
}

.disclaimer {
    background-color: #000;
    color: #d4a017;
    text-align: center;
    padding: 15px;
    font-weight: bold;
    border-bottom: 3px solid #d4a017;
    font-family: Arial, sans-serif;
    font-size: 1.1em;
}

.disclaimer strong {
    color: #d4a017;
}

header {
    background-color: #111;
    padding: 30px 20px;
    border-bottom: 2px solid #333;
    text-align: center;
}

header h1 {
    font-size: 2.5em;
    margin: 0;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background-color: #222;
    border: 1px solid #444;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.nav {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
    border-bottom: 1px solid #444;
    padding-bottom: 15px;
    justify-content: center;
}

.nav a {
    color: #e0e0e0;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 3px;
    transition: background-color 0.2s;
}

.nav a:hover {
    background-color: #333;
    color: #d4a017;
    text-decoration: none;
}

main {
    font-size: 1.05em;
}

main h2 {
    color: #d4a017;
    margin-top: 1.5em;
    border-bottom: 1px solid #444;
    padding-bottom: 5px;
}

main h3 {
    color: #c0c0c0;
    margin-top: 1.2em;
}

main ul, main ol {
    margin-bottom: 1.5em;
}

main li {
    margin-bottom: 0.5em;
}

footer {
    background-color: #111;
    color: #888;
    text-align: center;
    padding: 30px;
    margin-top: 50px;
    border-top: 1px solid #333;
    font-size: 0.9em;
}

footer a {
    color: #aaa;
}

footer a:hover {
    color: #d4a017;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table, th, td {
    border: 1px solid #444;
}

th, td {
    padding: 10px;
    text-align: left;
}

th {
    background-color: #333;
    color: #d4a017;
}

.faq-item {
    margin-bottom: 1.5em;
}
