/* ============================================
   INFINITY OS - AUTH PORTAL STYLES
   Phase 5: Dimensional login, floating panel, particle motion
   ============================================ */

.portal-auth {
    --portal-accent: var(--neon-cyan);
}

/* Hide chrome for auth pages */
.portal-auth .infinity-header,
.portal-auth .infinity-sidebar,
.portal-auth .messenger {
    display: none;
}

/* ============================================
   AUTH BACKGROUND — Animated radial drift
   ============================================ */

.portal-auth .main-content {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    /* Base layer: deep void */
    background: var(--bg-primary);
}

/* Animated ambient glow orbs (pure CSS, no JS required) */
.portal-auth .main-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 20% 20%, rgba(0, 240, 255, 0.09) 0%, transparent 70%),
        radial-gradient(ellipse 50% 60% at 80% 80%, rgba(255, 0, 170, 0.09) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 60% 10%, rgba(187, 0, 255, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse 35% 35% at 10% 80%, rgba(0, 255, 136, 0.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    animation: authAmbientDrift 20s ease-in-out infinite alternate;
}

/* Subtle grid overlay for depth */
.portal-auth .main-content::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 240, 255, 0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.022) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(0,0,0,0.8) 0%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(0,0,0,0.8) 0%, transparent 100%);
}

@keyframes authAmbientDrift {
    0% {
        background:
            radial-gradient(ellipse 60% 50% at 20% 20%, rgba(0, 240, 255, 0.09) 0%, transparent 70%),
            radial-gradient(ellipse 50% 60% at 80% 80%, rgba(255, 0, 170, 0.09) 0%, transparent 70%),
            radial-gradient(ellipse 40% 40% at 60% 10%, rgba(187, 0, 255, 0.05) 0%, transparent 60%),
            radial-gradient(ellipse 35% 35% at 10% 80%, rgba(0, 255, 136, 0.04) 0%, transparent 60%);
    }
    33% {
        background:
            radial-gradient(ellipse 55% 55% at 35% 30%, rgba(0, 240, 255, 0.10) 0%, transparent 70%),
            radial-gradient(ellipse 45% 55% at 65% 75%, rgba(255, 0, 170, 0.08) 0%, transparent 70%),
            radial-gradient(ellipse 40% 40% at 80% 20%, rgba(187, 0, 255, 0.06) 0%, transparent 60%),
            radial-gradient(ellipse 30% 40% at 15% 65%, rgba(0, 255, 136, 0.05) 0%, transparent 60%);
    }
    66% {
        background:
            radial-gradient(ellipse 65% 45% at 25% 40%, rgba(0, 240, 255, 0.08) 0%, transparent 70%),
            radial-gradient(ellipse 55% 50% at 70% 60%, rgba(255, 0, 170, 0.10) 0%, transparent 70%),
            radial-gradient(ellipse 35% 45% at 50% 15%, rgba(187, 0, 255, 0.05) 0%, transparent 60%),
            radial-gradient(ellipse 40% 35% at 5% 90%, rgba(0, 255, 136, 0.04) 0%, transparent 60%);
    }
    100% {
        background:
            radial-gradient(ellipse 60% 50% at 30% 25%, rgba(0, 240, 255, 0.09) 0%, transparent 70%),
            radial-gradient(ellipse 50% 60% at 75% 70%, rgba(255, 0, 170, 0.09) 0%, transparent 70%),
            radial-gradient(ellipse 40% 40% at 55% 5%, rgba(187, 0, 255, 0.05) 0%, transparent 60%),
            radial-gradient(ellipse 38% 38% at 20% 85%, rgba(0, 255, 136, 0.04) 0%, transparent 60%);
    }
}

/* Particle dots — CSS-only subtle motion field */
@keyframes particleDrift1 {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.4; }
    50% { transform: translateY(-24px) translateX(12px); opacity: 0.7; }
}
@keyframes particleDrift2 {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
    50% { transform: translateY(18px) translateX(-14px); opacity: 0.6; }
}
@keyframes particleDrift3 {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.25; }
    50% { transform: translateY(-14px) translateX(-10px); opacity: 0.5; }
}

/* ============================================
   AUTH CONTAINER
   ============================================ */

.auth-container {
    width: 100%;
    max-width: 460px;
    padding: var(--space-lg);
    position: relative;
    z-index: 2;
    animation: authPanelEnter 380ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes authPanelEnter {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ============================================
   AUTH CARD — Dimensional floating panel
   ============================================ */

.auth-card {
    background: rgba(10, 14, 24, 0.82);
    backdrop-filter: blur(28px) saturate(160%);
    -webkit-backdrop-filter: blur(28px) saturate(160%);
    border: 1px solid rgba(0, 240, 255, 0.14);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl) var(--space-2xl) var(--space-xl);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.04),
        0 24px 64px rgba(0, 0, 0, 0.55),
        0 8px 24px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.07),
        0 0 40px rgba(0, 240, 255, 0.06);
}

/* Glow edge scanline at top of card */
.auth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.4), transparent);
    border-radius: 1px;
    pointer-events: none;
}

/* ============================================
   AUTH LOGO & BRAND
   ============================================ */

.auth-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: var(--space-xl);
}

.auth-logo svg {
    width: 52px;
    height: 52px;
    color: var(--neon-cyan);
    filter:
        drop-shadow(0 0 16px rgba(0, 240, 255, 0.55))
        drop-shadow(0 0 40px rgba(0, 240, 255, 0.22));
    margin-bottom: var(--space-md);
    animation: logoGlowPulse 3s ease-in-out infinite;
}

@keyframes logoGlowPulse {
    0%, 100% {
        filter:
            drop-shadow(0 0 14px rgba(0, 240, 255, 0.50))
            drop-shadow(0 0 36px rgba(0, 240, 255, 0.18));
    }
    50% {
        filter:
            drop-shadow(0 0 22px rgba(0, 240, 255, 0.70))
            drop-shadow(0 0 50px rgba(0, 240, 255, 0.30));
    }
}

/* Brand name */
.auth-brand-name {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--neon-cyan);
    opacity: 0.75;
}

.auth-title {
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
    letter-spacing: -0.02em;
}

.auth-subtitle {
    text-align: center;
    color: var(--text-tertiary);
    font-size: 0.8125rem;
    line-height: 1.6;
    margin-bottom: var(--space-xl);
}

/* ============================================
   ROLE EXPLANATION CHIPS
   Company / Employee / Client — role context
   ============================================ */

.auth-role-chips {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    justify-content: center;
}

.auth-role-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
    padding: var(--space-sm) var(--space-xs);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.07);
    text-align: center;
}

.auth-role-chip-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    margin-bottom: 2px;
}

.auth-role-chip-icon--admin {
    background: rgba(0, 240, 255, 0.12);
    color: var(--neon-cyan);
}

.auth-role-chip-icon--employee {
    background: rgba(0, 255, 136, 0.12);
    color: var(--neon-green);
}

.auth-role-chip-icon--client {
    background: rgba(255, 0, 170, 0.12);
    color: var(--neon-magenta);
}

.auth-role-chip-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-tertiary);
    line-height: 1.2;
}

/* ============================================
   AUTH MODE SWITCHER (tab selector)
   ============================================ */

.auth-mode-switch {
    display: flex;
    gap: 4px;
    margin-bottom: var(--space-lg);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 4px;
}

.auth-mode-btn {
    flex: 1;
    border: none;
    border-radius: calc(var(--radius-md) - 2px);
    background: transparent;
    color: var(--text-tertiary);
    font-size: 0.8125rem;
    font-weight: 600;
    padding: var(--space-sm) var(--space-md);
    cursor: pointer;
    transition: all 180ms ease;
    white-space: nowrap;
}

.auth-mode-btn.is-active {
    color: var(--text-primary);
    background: rgba(0, 240, 255, 0.10);
    border: 1px solid rgba(0, 240, 255, 0.22);
    box-shadow: 0 0 14px rgba(0, 240, 255, 0.10);
}

.auth-mode-btn:hover:not(.is-active) {
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.04);
}

.auth-mode-panel {
    display: none;
    flex-direction: column;
    gap: var(--space-md);
}

.auth-mode-panel.is-active {
    display: flex;
}

/* ============================================
   AUTH FLASH MESSAGES
   ============================================ */

.auth-flash-stack {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

/* ============================================
   AUTH FORM
   ============================================ */

.auth-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

/* ============================================
   AUTH SUBMIT BUTTON — Full-width CTA
   ============================================ */

.auth-submit-btn {
    width: 100%;
    padding: 14px var(--space-lg);
    background: linear-gradient(135deg, var(--neon-cyan), rgba(0, 240, 255, 0.75));
    color: var(--bg-primary);
    font-weight: 700;
    font-size: 0.9375rem;
    letter-spacing: 0.01em;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 200ms cubic-bezier(0.34, 1.4, 0.64, 1);
    box-shadow:
        0 0 0 1px rgba(0, 240, 255, 0.3),
        0 0 20px rgba(0, 240, 255, 0.25),
        var(--control-shadow-2);
    margin-top: var(--space-sm);
}

/* Shimmer sweep on hover */
.auth-submit-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.22) 50%,
        transparent 100%
    );
    transform: translateX(-120%) skewX(-20deg);
    pointer-events: none;
}

.auth-submit-btn:hover {
    box-shadow:
        0 0 0 1px rgba(0, 240, 255, 0.45),
        0 0 30px rgba(0, 240, 255, 0.40),
        0 0 60px rgba(0, 240, 255, 0.14),
        var(--control-shadow-3);
    transform: translateY(-2px);
}

.auth-submit-btn:hover::after {
    animation: btnShimmer 0.55s ease-out forwards;
}

@keyframes btnShimmer {
    from { transform: translateX(-120%) skewX(-20deg); }
    to   { transform: translateX(220%) skewX(-20deg); }
}

.auth-submit-btn:active {
    transform: translateY(0) scale(0.99);
    transition-duration: 60ms;
}

.auth-submit-btn:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 2px var(--bg-primary),
        0 0 0 4px var(--neon-cyan),
        0 0 20px rgba(0, 240, 255, 0.4);
}

/* ============================================
   AUTH METADATA
   ============================================ */

.auth-hint {
    margin-top: var(--space-md);
    font-size: 0.8125rem;
    line-height: 1.6;
    color: var(--text-tertiary);
    text-align: center;
}

.auth-hint strong {
    color: var(--text-secondary);
    font-weight: 600;
}

.auth-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-sm);
}

.auth-link {
    font-size: 0.8125rem;
    color: var(--neon-cyan);
    opacity: 0.7;
    transition: opacity 160ms ease, color 160ms ease;
    text-decoration: none;
}

.auth-link:hover {
    opacity: 1;
    color: var(--neon-magenta);
}

/* ============================================
   AUTH ERROR INLINE
   ============================================ */

.auth-error {
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 107, 129, 0.08);
    border: 1px solid rgba(255, 107, 129, 0.25);
    border-left: 3px solid var(--color-error);
    border-radius: var(--radius-md);
    color: var(--color-error);
    font-size: 0.875rem;
    margin-bottom: var(--space-md);
}

/* ============================================
   AUTH DIVIDER
   ============================================ */

.auth-divider {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin: var(--space-lg) 0;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.07);
}

.auth-divider span {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ============================================
   RESPONSIVE AUTH
   ============================================ */

@media (max-width: 640px) {
    .auth-container {
        padding: var(--space-md);
    }

    .auth-card {
        padding: var(--space-xl) var(--space-lg);
    }

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

    .auth-role-chips {
        gap: 6px;
    }

    .auth-role-chip-label {
        font-size: 0.55rem;
    }
}

/* ============================================
   REDUCED MOTION — auth page
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    .portal-auth .main-content::before {
        animation: none;
    }

    .auth-logo svg {
        animation: none;
        filter: drop-shadow(0 0 12px rgba(0, 240, 255, 0.45));
    }

    .auth-container {
        animation: none;
    }

    .auth-submit-btn:hover {
        transform: none;
    }

    .auth-submit-btn::after {
        display: none;
    }
}

/* ============================================================
   PORTAL ROUTER — Mobile workspace launcher
   Suppresses desktop chrome; renders tile grid for mobile users.
   Desktop users are redirected to their dashboard via JS guard.
   ============================================================ */

.portal-router .infinity-header,
.portal-router .infinity-sidebar,
.portal-router .messenger {
    display: none;
}

.portal-router .main-content {
    margin: 0;
    padding: var(--space-xl) var(--space-md) var(--space-2xl);
    min-height: 100vh;
}

/* ── Wrapper ── */
.portal-router-wrap {
    max-width: 500px;
    margin: 0 auto;
}

/* ── Page header ── */
.router-portal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: var(--space-xl);
    padding-top: var(--space-sm);
}

.router-portal-role {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--portal-accent, var(--neon-cyan));
    margin-bottom: 2px;
}

.router-portal-title {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.01em;
    margin: 0;
}

/* ── Section label ── */
.router-section {
    margin-bottom: var(--space-xl);
}

.router-section-label {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-tertiary);
    margin-bottom: var(--space-sm);
}

/* ── Quick action row ── */
.router-actions-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
}

.router-action-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: var(--space-md) var(--space-sm);
    text-decoration: none;
    text-align: center;
    border-radius: var(--radius-md);
}

.router-action-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--portal-accent-rgb, 0, 240, 255), 0.10);
    color: var(--portal-accent, var(--neon-cyan));
}

.router-action-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* ── Main tile grid — 2-column ── */
.router-tile-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
}

/*
 * HOLOGRAPHIC TILE — pure CSS floating glass panel effect
 *
 * Layers (bottom to top):
 *  1.  base card background (from .infinity-card)
 *  2.  ::after  — inner glow pocket; blurs inward light at bottom-right
 *  3.  ::before — reflective sheen band; faint diagonal highlight top-left
 *  4.  content  — icon, title, subtitle, badge
 *
 * No JS, no canvas, no animation loops.
 * Reduced-motion: sheen and glow are fully retained (static, not animated),
 * only the lift transform is suppressed.
 */
.router-tile {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    padding: var(--space-lg) var(--space-md);
    text-decoration: none;
    border-radius: var(--radius-md);
    min-height: 112px;
    position: relative;
    overflow: hidden;   /* clip pseudo-elements to card boundary */
    isolation: isolate; /* new stacking context — pseudo-elements behind content */

    /* deeper black glass surface */
    background: rgba(4, 4, 10, 0.82);

    /* top-left highlight edge */
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 1px solid rgba(255, 255, 255, 0.09);
    border-right: 1px solid rgba(var(--portal-accent-rgb, 0, 240, 255), 0.10);
    border-bottom: 1px solid rgba(var(--portal-accent-rgb, 0, 240, 255), 0.10);

    /* depth shadow: two layers — close dark + far accent glow */
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(var(--portal-accent-rgb, 0, 240, 255), 0.04) inset;

    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease;
}

/* ── Pseudo-element: reflective sheen band (top-left diagonal) ── */
.router-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    /* diagonal gradient from top-left: faint white sheen fades toward bottom-right */
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.055) 0%,
        rgba(255, 255, 255, 0.018) 30%,
        transparent 60%
    );
    pointer-events: none;
    z-index: 0;
}

/* ── Pseudo-element: inner glow pocket (bottom-right warm depth) ── */
.router-tile::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    /* radial pulse from bottom-right corner — accent-colored inner warmth */
    background: radial-gradient(
        ellipse at 92% 90%,
        rgba(var(--portal-accent-rgb, 0, 240, 255), 0.07) 0%,
        transparent 65%
    );
    pointer-events: none;
    z-index: 0;
}

/* Content sits on top of pseudo-elements */
.router-tile > * {
    position: relative;
    z-index: 1;
}

/* Press/tap — lift + brighter border + stronger glow */
.router-tile:active {
    transform: scale(0.97) translateY(1px);
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(var(--portal-accent-rgb, 0, 240, 255), 0.18) inset;
    border-right-color: rgba(var(--portal-accent-rgb, 0, 240, 255), 0.28);
    border-bottom-color: rgba(var(--portal-accent-rgb, 0, 240, 255), 0.28);
}

/* Hover lift (pointer devices) */
@media (hover: hover) {
    .router-tile:hover {
        transform: translateY(-3px);
        box-shadow:
            0 10px 28px rgba(0, 0, 0, 0.55),
            0 0 18px rgba(var(--portal-accent-rgb, 0, 240, 255), 0.14),
            0 0 0 1px rgba(var(--portal-accent-rgb, 0, 240, 255), 0.12) inset;
        border-right-color: rgba(var(--portal-accent-rgb, 0, 240, 255), 0.22);
        border-bottom-color: rgba(var(--portal-accent-rgb, 0, 240, 255), 0.22);
    }
    .router-tile:hover .router-tile-icon {
        background: rgba(var(--portal-accent-rgb, 0, 240, 255), 0.14);
        box-shadow: 0 0 12px rgba(var(--portal-accent-rgb, 0, 240, 255), 0.22);
    }
}

/* Prefers-reduced-motion: suppress transforms, keep glow */
@media (prefers-reduced-motion: reduce) {
    .router-tile {
        transition: box-shadow 180ms ease, border-color 180ms ease;
    }
    .router-tile:active  { transform: none; }
    .router-tile:hover   { transform: none; }
}

.router-tile-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--portal-accent, var(--neon-cyan));
    background: rgba(var(--portal-accent-rgb, 0, 240, 255), 0.08);
    transition: background 180ms ease, box-shadow 180ms ease;
}

.router-tile-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin-top: auto;
}

.router-tile-subtitle {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    line-height: 1.4;
    margin-top: -2px;
}

/* ── Tile live-count badges ── */
.router-tile-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    min-width: 22px;
    height: 22px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1;
    z-index: 2; /* above pseudo-elements */
}

.router-tile-badge--neutral {
    background: rgba(0, 240, 255, 0.12);
    color: var(--neon-cyan, #00f0ff);
    border: 1px solid rgba(0, 240, 255, 0.22);
    box-shadow: 0 0 8px rgba(0, 240, 255, 0.18);
}

.router-tile-badge--success {
    background: rgba(0, 255, 136, 0.12);
    color: var(--neon-green, #00ff88);
    border: 1px solid rgba(0, 255, 136, 0.22);
    box-shadow: 0 0 8px rgba(0, 255, 136, 0.18);
}

.router-tile-badge--warning {
    background: rgba(255, 193, 7, 0.12);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.22);
    box-shadow: 0 0 8px rgba(255, 193, 7, 0.15);
}

.router-tile-badge--danger {
    background: rgba(255, 87, 87, 0.12);
    color: #ff5757;
    border: 1px solid rgba(255, 87, 87, 0.22);
    box-shadow: 0 0 8px rgba(255, 87, 87, 0.15);
}
