/* NameScore.co - Clean Report Styles */

:root {
    --primary-blue: #2563eb;
    --dark-text: #1f2937;
    --light-bg: #f9fafb;
    --white: #ffffff;
    --border: #e5e7eb;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--light-bg);
    margin: 0;
    padding: 0;
}

/* Simple Navigation */
header {
    background: var(--white);
    padding: 1rem 5%;
    border-bottom: 1px solid var(--border);
}

header a {
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 600;
}

/* Report Layout */
.report-container {
    max-width: 800px;
    margin: 2rem auto;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 2.25rem;
    line-height: 1.2;
    color: #111827;
    margin-bottom: 1rem;
}

h2 {
    color: var(--primary-blue);
    margin-top: 2rem;
}

ul {
    padding-left: 1.5rem;
}

li {
    margin-bottom: 1rem;
}

/* The CTA Box */
.cta-box {
    margin-top: 3rem;
    padding: 2rem;
    background: #eff6ff;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #bfdbfe;
}

.button {
    display: inline-block;
    background: var(--primary-blue);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 1rem;
    transition: background 0.2s;
}

.button:hover {
    background: #1d4ed8;
}

/* Footer */
footer {
    text-align: center;
    padding: 3rem 1rem;
    font-size: 0.9rem;
    color: #6b7280;
}

/* Mobile Friendly */
@media (max-width: 600px) {
    .report-container {
        margin: 1rem;
        padding: 1.5rem;
    }
    h1 {
        font-size: 1.75rem;
    }
}