.xm-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-bottom: 48px;
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
}

.xm-title {
    font-size: 2.3vw;
    white-space: nowrap;
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    margin-bottom: 32px;
    max-width: 688px; width: 100%;
}

.xm-title .accent {
    color: var(--accent);
}

.xm-bar {
    display: flex;
    flex-direction: row;
    max-width: 860px; width: 100%;
    margin-bottom: 36px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.xm-seg {
    flex: 1;
    background: rgba(12, 9, 22, 0.84);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow), 0 0 60px rgba(0, 0, 0, 0.3);
    border-right: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 20px 28px;
}

.xm-seg:first-child {
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.xm-seg:last-child {
    border-right: 1px solid var(--glass-border);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.xm-seg + .xm-seg {
    border-left: 1px solid var(--glass-border);
}

.xm-seg-key {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--text-subtle);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.xm-seg-val {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .xm-main {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .xm-title {
        font-size: 6.5vw;
        white-space: normal;
        max-width: 100%;
    }

    .xm-bar {
        max-width: 100%;
    }

    .xm-seg {
        padding: 14px 10px;
    }

    .xm-seg-key {
        font-size: 0.55rem;
    }

    .xm-seg-val {
        font-size: 0.85rem;
    }
}
