.sidebar-header-links {
    padding: 10px 20px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.sidebar .sidebar-scrollbox {
    top: 30px !important;
}

.menu-title {
    color: #ffb454 !important;
}

.ferris-img {
    float: left;
    margin-right: 15px;
    width: 20%;
}

@media (max-width: 768px) {
    .ferris-img {
        float: none;
        display: block;
        margin: 0 auto 15px auto;
        width: 80%;
    }
}

.site-footer {
    margin-top: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--quote-border);
    text-align: center;
    color: var(--inline-code-color);
    font-size: 1.4rem;
}

.site-footer p {
    margin: 0;
}

.site-footer a,
.site-footer a:link,
.site-footer a:visited {
    color: var(--inline-code-color);
    text-decoration: none;
    -webkit-text-fill-color: var(--inline-code-color);
}

.site-footer a:hover {
    text-decoration: underline;
}

/* Hero Row */
.hero-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 1.5rem 0 2rem 0;
}

.ferris-img-hero {
    width: 140px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .hero-row {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .ferris-img-hero {
        width: 120px;
    }
}

/* SSH Demo Terminal */
.ssh-demo-container {
    text-align: center;
}

.ssh-demo-label {
    margin-bottom: 1rem;
}

.terminal-shell {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    font-family: 'SF Mono', 'Fira Code', 'JetBrains Mono', 'Consolas', monospace;
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.03) inset,
        0 0 50px rgba(255, 180, 84, 0.1);
    cursor: default;
}

.terminal-prompt {
    color: #98c379;
    font-weight: 700;
    user-select: none;
}

.terminal-command {
    color: #ffb454;
    letter-spacing: 0.03em;
    font-weight: 500;
}

@media (max-width: 768px) {
    .terminal-shell {
        padding: 0.75rem 1rem;
    }
}

/* Trusted By */
.trusted-by {
    text-align: center;
    margin: 2rem 0;
}

.trusted-by-tagline {
    color: var(--sidebar-fg);
    margin-bottom: 1rem;
    text-align: left;
}

.trusted-by-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
}

.trusted-by-project {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    text-decoration: none;
    color: #ffb454;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.trusted-by-project,
.trusted-by-project:hover,
.trusted-by-project:active,
.trusted-by-project:visited,
.trusted-by-project:link {
    text-decoration: none !important;
}

.trusted-by-project:hover {
    border-color: rgba(255, 180, 84, 0.4);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5), 0 0 50px rgba(255, 180, 84, 0.1);
}

.trusted-by-name {
    font-family: 'SF Mono', 'Fira Code', 'JetBrains Mono', 'Consolas', monospace;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: #ffb454;
    -webkit-text-fill-color: #ffb454;
    text-decoration: none;
}

.trusted-by-project:hover .trusted-by-name {
    text-decoration: none;
}

.trusted-by-project img {
    height: 20px;
}

@media (max-width: 768px) {
    .trusted-by-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .trusted-by-project {
        padding: 0.3rem 0.6rem;
    }
}