
/* VAB Portal v1.0 polish */
.availability-metric.available strong {
    color: #54db84;
}

.availability-metric.unavailable strong {
    color: #ff9c65;
    font-size: clamp(25px, 3vw, 40px);
}

.live-summary {
    margin-top: 22px;
    padding: 22px 24px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(248, 201, 0, .055), rgba(255, 255, 255, .015));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.live-summary b {
    font-size: 18px;
}

.live-summary p {
    margin: 7px 0 0;
    color: var(--muted);
}

.live-dot {
    display: inline-block;
    width: 11px;
    height: 11px;
    margin-right: 9px;
    border-radius: 50%;
}

.live-dot.online {
    background: #39d36d;
    box-shadow: 0 0 16px rgba(57, 211, 109, .75);
}

.live-dot.offline {
    background: #ff7867;
    box-shadow: 0 0 14px rgba(255, 120, 103, .45);
}

.active-team-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.active-team-list span {
    padding: 9px 12px;
    border: 1px solid rgba(57, 211, 109, .28);
    border-radius: 999px;
    background: rgba(57, 211, 109, .07);
    color: #dfffea;
    font-weight: 750;
}

.homepage-updated {
    margin: 16px 2px 0;
    color: var(--muted);
    font-size: 14px;
}

.trust-note-section {
    padding-top: 0;
}

.trust-note {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    align-items: center;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--panel);
}

.trust-note h2 {
    margin: 0 0 7px;
    font-size: 24px;
}

.trust-note p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.footer-v5 {
    gap: 28px;
}

.footer-meta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--muted);
    font-size: 13px;
}

.footer-meta a {
    color: var(--yellow);
}

@media (max-width: 720px) {
    .live-summary {
        align-items: stretch;
        flex-direction: column;
    }

    .live-summary .button {
        text-align: center;
    }

    .trust-note {
        grid-template-columns: 1fr;
    }

    .footer-v5 {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-meta {
        justify-content: flex-start;
    }
}
