#entity-links {
    width: 100%;
    background: #131A2A; /* match pm-header exactly */
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

/* NAV BAR WRAPPER */
.entity-nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0.6rem 2rem;
}

/* BRAND (LEFT SIDE) */
.entity-brand {
    color: #66FF99;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.3px;

    text-shadow: 0 0 12px rgba(102,255,153,.35);
}

/* NAV LINKS ROW */
.entity-links {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

/* LINK BASE STYLE */
.entity-link {
    text-decoration: none;
    color: #E6F6EE;
    font-size: 0.9rem;

    opacity: 0.85;
    transition: all 0.2s ease;

    position: relative;
}

/* HOVER */
.entity-link:hover {
    color: #66FF99;
    opacity: 1;
}

/* ACTIVE STATE GLOW */
.entity-link.active {
    color: #66FF99;
    opacity: 1;

    text-shadow: 0 0 12px rgba(102,255,153,.45);
}

/* ACTIVE UNDERLINE BAR */
.entity-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;

    width: 100%;
    height: 2px;

    background: #66FF99;
    box-shadow: 0 0 10px rgba(102,255,153,.4);
}

.entity-brand-link {
    display: flex;
    align-items: center;
    gap: 12px;

    text-decoration: none;
    color: inherit;
}

.entity-logo {
    width: 34px;
    height: 34px;
    object-fit: contain;

    filter: drop-shadow(0 0 10px rgba(102,255,153,.35));
    transition: transform .2s ease;
}

.entity-brand-link:hover .entity-logo {
    transform: scale(1.06);
}

.entity-brand-link span {
    color: #66FF99;
    font-size: 1rem;
    font-weight: 800;
    text-shadow: 0 0 12px rgba(102,255,153,.35);
}

/* MOBILE */
@media (max-width: 768px) {
    .entity-nav-bar {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.75rem 1rem;
    }

    .entity-links {
        justify-content: center;
        gap: 1rem;
    }
}
/* ==========================================================
   FLOATING FEEDBACK BUTTON
========================================================== */

.feedback-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 9999;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 50px;
    padding: 12px 18px;

    background: rgba(15, 23, 42, 0.96);
    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;

    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(255, 255, 255, 0.04);

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.feedback-float:hover {
    background: rgba(30, 41, 59, 0.98);
    color: #ffffff;

    border-color: rgba(255, 255, 255, 0.24);

    transform: translateY(-3px);

    box-shadow:
        0 16px 36px rgba(0, 0, 0, 0.34),
        0 0 18px rgba(255, 255, 255, 0.06);
}

.feedback-float:visited {
    color: #ffffff;
}

.feedback-float:active {
    color: #ffffff;
}

.feedback-float:focus-visible {
    outline: 3px solid rgba(96, 165, 250, 0.85);
    outline-offset: 4px;
}

.feedback-float-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 1.05rem;
    line-height: 1;

    flex-shrink: 0;
}

.feedback-float-text {
    white-space: nowrap;
}

/* ==========================
   TABLET
========================== */

@media (max-width: 768px) {

    .feedback-float {
        right: 16px;
        bottom: 16px;

        min-height: 48px;
        padding: 11px 16px;
    }

}

/* ==========================
   MOBILE
========================== */

@media (max-width: 480px) {

    .feedback-float {
        right: 14px;
        bottom: 14px;

        width: 48px;
        height: 48px;
        min-height: 48px;

        padding: 0;
        gap: 0;

        border-radius: 50%;
    }

    .feedback-float-text {
        position: absolute;

        width: 1px;
        height: 1px;

        padding: 0;
        margin: -1px;

        overflow: hidden;
        white-space: nowrap;

        clip: rect(0, 0, 0, 0);

        border: 0;
    }

    .feedback-float-icon {
        font-size: 1.15rem;
    }

}

/* ==========================
   REDUCED MOTION
========================== */

@media (prefers-reduced-motion: reduce) {

    .feedback-float {
        transition: none;
    }

    .feedback-float:hover {
        transform: none;
    }

}