.app-logo {
    display: flex;
    align-items: baseline;
    gap: 0;
    margin-right: 18px;
    padding-right: 18px;
    border-right: 1px solid var(--border-strong);
    user-select: none;
}

.app-logo-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1rem;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: 0.02em;
    line-height: 1;
}

.app-logo-text span {
    color: var(--accent-color);
}

.app-logo-tagline {
    display: none;
}

.menu-divider {
    width: 1px;
    height: 14px;
    background: var(--border-strong);
    margin: 0 4px;
}

#fh-root {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 99999;
    overflow: hidden;
    cursor: pointer;
    user-select: none;
    transition: opacity 1.5s ease-in-out;
}

#fh-root canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}