:root {
    --bs-body-font-family: 'Roboto', sans-serif;
}

html,
body {
    font-family: 'Roboto', sans-serif;
}

.header {
    border-bottom: 1px solid #e5e7eb;
    z-index: 1030;
}

.navbar-brand {}

.keyword-match {
    color: var(--bs-primary);
}

.navbar-nav .nav-link {
    color: #475569;
}

.navbar-nav .nav-link:hover {
    color: var(--bs-primary);
}

.footer {
    border-top: 1px solid #e5e7eb;
    padding: 30px 0;
    margin-top: 50px;
}

.main {
    flex: 1;
    padding-top: 50px;
}

:root {
    --bs-body-font-family: 'Roboto', sans-serif;
}

.app {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

.header+* {
    padding-top: 50px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
}

.menu {
    display: flex;
    gap: 20px;
}

.menu a {
    text-decoration: none;
    color: #475569;
}

.menu a.router-link-active {
    color: #2563eb;
    font-weight: 600;
}

.main {
    flex: 1;
    padding-top: 50px;
}

.footer {
    border-top: 1px solid #e5e7eb;
    padding: 30px 0;
    margin-top: 50px;
}


.page-icon,
.cta-icon {
    width: 48px;
    height: 48px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    background: var(--bs-tertiary-bg);
    color: var(--bs-primary);
    font-size: 1.2rem;
}

.page-description {
    max-width: 680px;
    line-height: 1.7;
}

.section-card {
    padding: 1.5rem;
    background: var(--bs-body-bg);
    border: 1px solid var(--bs-border-color);
    border-radius: 0.9rem;
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.04);
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.feature-card {
    padding: 1rem;
    border: 1px solid var(--bs-border-color);
    border-radius: 0.75rem;
    background: var(--bs-body-bg);
    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.07);
}

.screenshot-card {
    padding: 1rem;
    border: 1px solid var(--bs-border-color);
    border-radius: 0.75rem;
    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease;
}

.screenshot-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.07);
}

.screenshot-card img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    border-radius: 0.5rem;
}

@media (max-width: 576px) {
    .screenshot-card img {
        height: 180px;
    }
}

.browser-card {
    padding: 1.25rem;
    border: 1px solid var(--bs-border-color);
    border-radius: 0.75rem;
    background: var(--bs-body-bg);
    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease,
        border-color 0.15s ease;
}

.browser-card:hover {
    transform: translateY(-2px);
    border-color: var(--bs-primary);
    box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.07);
}

.browser-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 0.65rem;
    background: var(--bs-tertiary-bg);
    color: var(--bs-body-color);
    font-size: 1.35rem;
}

.job-board-list {
    border: 1px solid var(--bs-border-color);
    border-radius: 0.75rem;
    overflow: hidden;
}

.job-board-row {
    min-height: 64px;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid var(--bs-border-color);
}

.job-board-row:last-child {
    border-bottom: 0;
}

.board-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 0.55rem;
    background: var(--bs-tertiary-bg);
    color: var(--bs-body-color);
    font-size: 0.9rem;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.status-pill.supported {
    color: var(--bs-success);
    background: var(--bs-success-bg-subtle);
}

.status-pill.planned {
    color: var(--bs-secondary-color);
    background: var(--bs-secondary-bg);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-height: 52px;
    padding: 0.75rem 1rem;
    border: 1px solid var(--bs-border-color);
    border-radius: 0.65rem;
    background: var(--bs-body-bg);
}

.feature-check {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    color: var(--bs-success);
    background: var(--bs-success-bg-subtle);
    font-size: 0.7rem;
}

.cta-card {
    padding: 3rem 1.5rem;
    border: 1px solid var(--bs-border-color);
    border-radius: 0.9rem;
    background: var(--bs-body-bg);
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.04);
}

@media (max-width: 576px) {

    .section-card {
        padding: 1rem;
    }

    .job-board-row {
        align-items: flex-start;
    }

    .status-pill {
        margin-top: 0.15rem;
    }

    .screenshot-wrapper {
        height: 180px;
    }

}

.keyword-cv {
    background: #D3D3D3;
    color: #3f3e3e;
    display: inline-block;
    padding: 2px 5px;
    border-radius: 4px;
    margin-bottom: 2px;
}

.keyword-match {
    background: #e8f5e9;
    color: #2e7d32;
    display: inline-block;
    padding: 2px 5px;
    border-radius: 4px;
    margin-bottom: 2px;
}

.keyword-alias {
    background: #fff8e1;
    color: #8a6d1d;
    display: inline-block;
    padding: 2px 5px;
    border-radius: 4px;
    margin-bottom: 2px;
}

.keyword-missing {
    background: #ffebee;
    color: #c62828;
    display: inline-block;
    padding: 2px 5px;
    border-radius: 4px;
    margin-bottom: 2px;
}