:root {
    --bg-color: #1a1a1a;
    --text-color: #e0e0e0;
    --header-color: #ffffff;
    --accent-color: #b30000;
    --card-bg-color: #2c2c2c;
    --border-color: #444444;
    --timeline-color: #8b0000;
}
body {
    font-family: 'Lato', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    line-height: 1.7;
    font-size: 1.1em;
}
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}
h1, h2, h3 {
    font-family: 'Merriweather', serif;
    color: var(--header-color);
    font-weight: 700;
    margin-top: 1.5em;
}
h1 {
    font-size: 3em;
    font-weight: 900;
    text-align: center;
    letter-spacing: -1.5px;
    margin-top: 0;
    padding-bottom: 0.3em;
    border-bottom: 2px solid var(--border-color);
    line-height: 1.2;
}
h2 {
    font-size: 2.2em;
    border-left: 4px solid var(--accent-color);
    padding-left: 15px;
    margin-top: 2.5em;
    margin-bottom: 1.5em;
}
h3 {
    font-size: 1.6em;
    color: var(--header-color);
    margin-bottom: 1em;
}
p, ul, table {
    margin-bottom: 1.2em;
}
strong, .case-highlight {
    color: var(--accent-color);
    font-weight: 700;
}
.hero {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://placehold.co/1200x600/111111/444444?text=COURT+FILINGS') center center / cover no-repeat;
    margin-bottom: 2em;
    padding: 5rem 1.5rem;
    text-align: center;
}
.hero-text h1 {
    color: white;
    text-shadow: 3px 3px 10px rgba(0,0,0,0.8);
    border: none;
    font-size: 3.5em;
}
.hero-text p {
    color: #ccc;
    font-family: 'Roboto Slab', serif;
    font-size: 1.5em;
    max-width: 800px;
    margin: 0.5em auto 0;
}
.lead {
    font-size: 1.4em;
    font-style: italic;
    color: #cccccc;
    text-align: center;
    padding: 0 1em;
    margin: 2em auto 3em;
    font-family: 'Roboto Slab', serif;
}
blockquote {
    background-color: var(--card-bg-color);
    border-left: 5px solid var(--accent-color);
    margin: 2em 0;
    padding: 1.5em 2em;
    font-style: italic;
    font-size: 1.2em;
    color: #f0f0f0;
    border-radius: 4px;
    position: relative;
}
.file-card {
    background-color: var(--card-bg-color);
    border: 1px solid var(--border-color);
    padding: 2em;
    margin-bottom: 1.5em;
    border-radius: 5px;
}
.file-card h3 {
    margin-top: 0;
    color: var(--accent-color);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}
ul.custom-list {
    list-style-type: none;
    padding: 0;
}
ul.custom-list li {
    padding: 12px 10px;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 30px;
}
ul.custom-list li:before {
    content: "■";
    position: absolute;
    left: 5px;
    color: var(--accent-color);
    font-size: 1.2em;
}
ul.custom-list li:last-child {
    border-bottom: none;
}
.timeline {
    position: relative;
    margin: 3em 0;
    padding-left: 40px;
    border-left: 3px solid var(--timeline-color);
}
.timeline-item {
    margin-bottom: 2.5em;
    position: relative;
}
.timeline-item:before {
    content: "";
    position: absolute;
    left: -48px;
    top: 5px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--timeline-color);
    border: 4px solid var(--bg-color);
    box-shadow: 0 0 5px var(--timeline-color);
}
.timeline-date {
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 5px;
    font-family: 'Roboto Slab', serif;
    font-size: 1.2em;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin: 2em 0;
    background-color: var(--card-bg-color);
}
th {
    background-color: #000;
    color: white;
    text-align: left;
    padding: 15px;
    font-family: 'Merriweather', serif;
}
td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--border-color);
}
tr:hover {
    background-color: #383838;
}
.disclaimer {
    background-color: #2a0a0a;
    border-left: 4px solid var(--accent-color);
    padding: 1.5em;
    margin: 2em 0;
    font-size: 0.95em;
    border-radius: 4px;
}
footer {
    text-align: center;
    margin-top: 3em;
    padding: 2em;
    border-top: 1px solid var(--border-color);
    color: #777777;
    font-size: 0.9em;
}
footer a {
    color: #ccc;
    text-decoration: none;
    margin: 0 10px;
}
footer a:hover {
    color: white;
}
.doc-reference {
    font-size: 0.8em;
    color: #999;
    display: block;
    margin-top: 5px;
}
hr {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(128, 128, 128, 0.75), rgba(255, 255, 255, 0));
    margin: 4em 0;
}
@media (max-width: 768px) {
    h1 { font-size: 2.2em; }
    .hero-text h1 { font-size: 2.5em; }
    h2 { font-size: 1.8em; }
    .hero { padding: 3rem 1rem; }
    .lead { font-size: 1.2em; }
}