/* Extinct Legal Pages - Dark Theme Styles */

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

:root {
    --bg-primary: #0C0F0D;
    --bg-surface: #121614;
    --bg-surface-secondary: #1A1F1C;
    --highlight: #2EE270;
    --text-primary: #E3EDE6;
    --text-secondary: #A1B2A5;
    --accent-low: #253028;
    --divider: rgba(255, 255, 255, 0.06);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 24px;
    width: 100%;
}

header {
    background-color: var(--bg-surface);
    border-bottom: 1px solid var(--divider);
    padding: 24px 0;
    margin-bottom: 40px;
}

header .container {
    padding: 0 24px;
}

h1 {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 32px;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 24px;
    margin-bottom: 12px;
}

p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.5;
}

ul, ol {
    margin-left: 24px;
    margin-bottom: 16px;
    color: var(--text-secondary);
}

li {
    font-size: 15px;
    margin-bottom: 8px;
    line-height: 1.5;
}

a {
    color: var(--highlight);
    text-decoration: none;
    transition: opacity 0.2s;
}

a:hover {
    opacity: 0.8;
}

.content-section {
    background-color: var(--bg-surface);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 24px;
    border: 1px solid var(--divider);
}

.last-updated {
    color: var(--text-secondary);
    font-size: 13px;
    margin-bottom: 32px;
    opacity: 0.7;
}

form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 15px;
    color: var(--text-primary);
}

input,
textarea {
    background-color: var(--bg-surface-secondary);
    border: 1px solid var(--divider);
    border-radius: 12px;
    color: var(--text-primary);
    padding: 12px 14px;
    font-size: 15px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--highlight);
    box-shadow: 0 0 0 2px rgba(46, 226, 112, 0.15);
}

textarea {
    min-height: 160px;
    resize: vertical;
}

button[type="submit"] {
    align-self: flex-start;
    background-color: var(--highlight);
    border: none;
    border-radius: 12px;
    color: var(--bg-primary);
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 12px 28px;
    text-transform: uppercase;
    transition: transform 0.15s ease, opacity 0.2s ease;
}

button[type="submit"]:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

button[type="submit"]:active {
    transform: translateY(0);
    opacity: 0.85;
}

footer {
    margin-top: auto;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--divider);
    background-color: var(--bg-surface);
}

footer p {
    font-size: 13px;
    color: var(--text-secondary);
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 24px 16px;
    }
    
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 20px;
    }
    
    .content-section {
        padding: 24px;
        border-radius: 16px;
    }
}

