/* HALLO Webplayer V2 — Hub screen */

body.hub-active #sidebar,
body.hub-active #menu-gutter,
body.hub-active #menu-scrim {
    display: none !important;
}
body.hub-active #main-content {
    margin: 0 !important;
    padding: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
}

.hub-screen {
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse at center, #1a1a2e 0%, #050510 100%);
    display: flex;
    flex-direction: column;
    z-index: 100;
    padding: 40px 60px;
    color: #fff;
}

.hub-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
}
.hub-logo {
    height: 40px;
    object-fit: contain;
}
.hub-user {
    color: #999;
    font-size: 14px;
}

.hub-cards {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-content: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hub-card {
    background: linear-gradient(135deg, rgba(30,60,114,0.25), rgba(42,82,152,0.15));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 48px 32px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s, border-color 0.2s, background 0.2s;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.hub-card:hover, .hub-card:focus {
    transform: translateY(-4px);
    border-color: rgba(0,204,170,0.5);
    background: linear-gradient(135deg, rgba(30,60,114,0.4), rgba(42,82,152,0.3));
    outline: none;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.hub-card-icon {
    font-size: 72px;
    margin-bottom: 18px;
    line-height: 1;
}
.hub-card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}
.hub-card-sub {
    font-size: 13px;
    color: #999;
}

.hub-footer {
    text-align: center;
    margin-top: 40px;
}
.hub-action {
    background: transparent;
    color: #999;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    padding: 10px 24px;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.hub-action:hover, .hub-action:focus {
    background: rgba(255,255,255,0.05);
    color: #fff;
    outline: none;
}
