:root {
    --bb-accent: #0d6efd;
    --bb-dark: #151a22;
    --bb-paper: #f5f7fb;
    --bb-border: #d8dfeb;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(180deg, #f4f7fb 0%, #ffffff 180px);
    color: #1a2230;
}

.brandmark {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #101828;
}

.hero-card,
.editorial-card,
.review-card,
.quiz-card,
.result-card,
.report-card,
.legal-card,
.contact-card {
    background: #fff;
    border: 1px solid var(--bb-border);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.kicker {
    display: inline-block;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: #e8f1ff;
    color: #0a58ca;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.hero-title,
.article-title,
.section-title {
    font-weight: 800;
    line-height: 1.08;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

.article-title {
    font-size: clamp(1.75rem, 4vw, 2.6rem);
}

.section-title {
    font-size: 1.5rem;
}

.author-chip {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bb-paper);
    border: 1px solid var(--bb-border);
    border-radius: 16px;
}

.author-avatar,
.review-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    background: #d6dbe7;
}

.review-avatar {
    width: 56px;
    height: 56px;
}

.stat-box {
    background: #101828;
    color: #fff;
    border-radius: 16px;
    padding: 1rem;
    height: 100%;
}

.lead-copy,
.article-copy p,
.legal-card p,
.contact-card p,
.review-card p,
.result-card p {
    color: #3c4658;
    line-height: 1.75;
}

.pull-quote {
    border-left: 4px solid var(--bb-accent);
    padding-left: 1rem;
    color: #23324f;
    font-weight: 600;
}

.sidebar-note {
    background: #f8fbff;
    border: 1px dashed #b9caee;
    border-radius: 16px;
    padding: 1rem;
}

.footer-heading {
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.footer-link {
    color: #4b5565;
    text-decoration: none;
    margin-bottom: 0.4rem;
}

.footer-link:hover {
    color: var(--bb-accent);
}

.choice-card {
    border: 1px solid var(--bb-border);
    border-radius: 14px;
    transition: 0.2s ease;
}

.choice-card:hover {
    border-color: #8db1ef;
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.08);
}

.progress {
    height: 12px;
    border-radius: 999px;
    background: #eaf0f8;
}

.result-meter {
    height: 16px;
    border-radius: 999px;
    background: #eaf0f8;
    overflow: hidden;
}

.result-meter-bar {
    height: 100%;
    background: linear-gradient(90deg, #0d6efd, #6ea8fe);
}

.table thead th {
    white-space: nowrap;
}

.small-muted {
    color: #6b7280;
    font-size: 0.9rem;
}

.site-footer {
    background: #fff;
}
.hero-side-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.hero-side-image {
    padding-left: 10px;
}

        .code-container {
            display: flex;
            align-items: center;
            font-family: monospace;
            border: 1px solid #ccc;
            padding: 5px;
            background-color: #f5f5f5;
            border-radius: 4px;
            max-width: 99%;
        }

        .code-text {
            flex: 1;
            overflow-x: auto;
            white-space: nowrap;
            margin-right: 10px;
             overflow-x: hidden; 
             color:#999;
        }

        .copy-button {
            padding: 5px 10px;
            cursor: pointer;
            border: none;
            background-color: #007bff;
            color: white;
            border-radius: 4px;
        }

        .copy-button:hover {
            background-color: #0056b3;
        }
  

