/*
Theme Name: Anomaly Security Lab
Author: Independent Researcher
Description: Minimal dark WordPress theme for security research & vulnerability reports.
Version: 1.0.0
License: MIT
Text Domain: anomaly
*/

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0b0d10;
    color: #e5e7eb;
    line-height: 1.7;
}

a {
    color: #7dd3fc;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1.2rem;
}

header {
    border-bottom: 1px solid #1f2933;
}

.site-title {
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero {
    padding: 4rem 0;
}

.hero h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    background: #111827;
    border: 1px solid #1f2937;
    margin-right: 0.4rem;
}

.reports {
    list-style: none;
    padding: 0;
    margin: 0;
}

.reports li {
    padding: 1rem 0;
    border-bottom: 1px solid #1f2933;
}

footer {
    border-top: 1px solid #1f2933;
    font-size: 0.8rem;
    color: #9ca3af;
}