/* Mentor hub bar + coach strip — shared across Hub, Store, School, etc. */
.mentor-hub-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    margin-bottom: 1.25rem;
    border-radius: var(--evo-radius);
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.08), rgba(242, 201, 102, 0.06));
    border: 1px solid var(--evo-border);
}

.mentor-hub-bar--active_using {
    border-color: rgba(242, 201, 102, 0.45);
    box-shadow: 0 0 20px rgba(242, 201, 102, 0.08);
}

.mentor-hub-bar__left {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 0;
}

.mentor-hub-bar__avatar {
    width: 56px;
    height: 56px;
    max-width: 56px;
    max-height: 56px;
    border-radius: 10px;
    object-fit: cover;
    object-position: top;
    border: 2px solid var(--evo-border);
    flex-shrink: 0;
}

.mentor-hub-bar__avatar--dim {
    filter: grayscale(0.4);
    opacity: 0.85;
}

.mentor-hub-bar__avatar--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    color: var(--evo-muted);
    font-weight: 700;
}

.mentor-hub-bar__name {
    font-family: var(--evo-display);
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
}

.mentor-hub-bar__meta {
    font-size: 0.75rem;
    color: var(--evo-muted);
    margin-top: 0.25rem;
}

.mentor-hub-bar__right {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
}

.mentor-hub-bar__countdown {
    text-align: right;
}

.mentor-hub-bar__countdown-label {
    display: block;
    font-size: 0.625rem;
    color: var(--evo-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.mentor-hub-bar__countdown-time {
    font-family: var(--evo-mono);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--evo-gold);
}

.mentor-hub-bar__badge {
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: rgba(176, 38, 255, 0.15);
    color: var(--evo-purple);
    border: 1px solid rgba(176, 38, 255, 0.35);
}

.mentor-hub-bar__btn {
    padding: 0.45rem 0.85rem !important;
    font-size: 0.8125rem !important;
}

.mentor-coach-strip {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.15rem;
    margin-bottom: 1.25rem;
    border-radius: var(--evo-radius);
    background: var(--evo-panel);
    border: 1px solid var(--evo-border-subtle);
}

.mentor-coach-strip__img {
    width: 64px;
    height: 64px;
    max-width: 64px;
    max-height: 64px;
    border-radius: 10px;
    object-fit: cover;
    object-position: top;
    border: 2px solid var(--evo-cyan);
    flex-shrink: 0;
}

.mentor-coach-strip__name {
    font-weight: 700;
    color: var(--evo-cyan);
    font-size: 0.875rem;
    margin-bottom: 0.35rem;
}

.mentor-coach-strip__line {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: var(--evo-text);
}

.mentor-coach-strip__body--solo {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
}

.evo-btn-sm {
    padding: 0.4rem 0.85rem !important;
    font-size: 0.8125rem !important;
}

/* My Room mentor display */
.myroom-mentor-stage {
    position: absolute;
    bottom: 16%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 12;
    text-align: center;
    pointer-events: none;
}

.mentor-live2d-stage__canvas-wrap {
    width: min(280px, 44vw);
    height: min(380px, 52vh);
    margin: 0 auto;
    filter: drop-shadow(0 8px 28px rgba(0, 0, 0, 0.45));
}

.mentor-live2d-stage__canvas {
    display: block;
    width: 100%;
    height: 100%;
}

.mentor-live2d-stage--live .mentor-live2d-stage__fallback {
    display: none;
}

.mentor-live2d-stage--live.myroom-mentor-stage {
    bottom: 14%;
}

.myroom-mentor-portrait {
    width: 140px;
    height: 140px;
    max-width: 140px;
    max-height: 140px;
    border-radius: 12px;
    object-fit: cover;
    object-position: top;
    border: 3px solid var(--evo-gold);
    box-shadow: 0 0 30px rgba(242, 201, 102, 0.35);
}

.myroom-mentor-label {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--evo-gold);
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.9);
}

.myroom-album-wall {
    position: absolute;
    top: 22%;
    left: 8%;
    z-index: 11;
    display: flex;
    gap: 6px;
    pointer-events: none;
}

.myroom-album-thumb {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.myroom-album-thumb--dim {
    filter: grayscale(1) brightness(0.4);
    opacity: 0.7;
}

.myroom-album-thumb--active {
    border-color: var(--evo-gold);
    box-shadow: 0 0 10px rgba(242, 201, 102, 0.5);
}

/* Play teaching mentor dock */
.play-mentor-dock {
    display: none;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.85rem;
    margin-bottom: 0.75rem;
    border-radius: var(--evo-radius-sm);
    background: rgba(255, 71, 87, 0.08);
    border: 1px solid rgba(255, 71, 87, 0.25);
}

.play-mentor-dock.is-visible {
    display: flex;
}

.play-mentor-dock__img {
    width: 48px;
    height: 48px;
    max-width: 48px;
    max-height: 48px;
    border-radius: 8px;
    object-fit: cover;
    object-position: top;
}

.play-mentor-dock__name {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #ff7b72;
}

.play-mentor-dock__line {
    font-size: 0.75rem;
    color: var(--evo-muted);
    margin: 0.15rem 0 0;
}

.play-mentor-review-btn {
    margin-top: 0.75rem;
    width: 100%;
}

.album-progress-bar {
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
    margin: 0.5rem 0 1rem;
}

.album-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--evo-cyan), var(--evo-gold));
    border-radius: 999px;
}

@media (max-width: 700px) {
    .mentor-hub-bar { flex-direction: column; align-items: stretch; }
    .mentor-hub-bar__right { justify-content: space-between; }
}
