/* ========== 全局重置与变量 ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --deep-bg: #0b1120;
    --card-bg: #ffffff;
    --accent-purple: #8b5cf6;
    --accent-blue: #60a5fa;
    --text-primary: #1a1f2e;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --border-subtle: #eef2ff;
    --glow-purple: rgba(139, 92, 246, 0.25);
    --radius-xl: 2rem;
    --radius-lg: 1.5rem;
    --radius-md: 1rem;
    --radius-sm: 0.6rem;
    --shadow-card: 0 20px 35px -12px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 25px 40px -12px rgba(99, 102, 241, 0.2);
    --transition-smooth: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    background-color: #f5f7fb;
    color: #1a1f2e;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========== Header ========== */
header {
    background: #0b1120;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 1rem 0;
    gap: 0.8rem;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    flex-shrink: 0;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #c084fc, #60a5fa);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.02em;
}

.logo-badge {
    background: rgba(96, 165, 250, 0.2);
    color: #94a3f8;
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    border: 1px solid rgba(96, 165, 250, 0.3);
    white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: 1.6rem;
    list-style: none;
    flex-wrap: wrap;
}

.nav-links a {
    color: #cbd5e6;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
    font-size: 0.95rem;
    white-space: nowrap;
}

.nav-links a:hover {
    color: #a78bfa;
}

.nav-links a.active {
    color: #c084fc;
    border-bottom: 2px solid #c084fc;
    padding-bottom: 0.25rem;
}

/* ========== Hero ========== */
.hero {
    background: linear-gradient(145deg, #0a0f1c 0%, #101826 100%);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #1e293b;
}

.hero::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle at 30% 40%, rgba(139, 92, 246, 0.15), transparent 60%);
    pointer-events: none;
}

.hero-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding: 5rem 0 4rem;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1.2;
    min-width: 280px;
}

.hero-text .tag {
    display: inline-block;
    background: rgba(139, 92, 246, 0.2);
    color: #c084fc;
    padding: 0.3rem 1rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
    letter-spacing: 0.02em;
}

.hero-text h2 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(to right, #ffffff, #a78bfa, #60a5fa);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

.hero-text p {
    font-size: 1.2rem;
    color: #94a3b8;
    margin: 1.2rem 0 2rem;
    max-width: 90%;
}

.btn-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(95deg, #8b5cf6, #6366f1);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.4);
    background: linear-gradient(95deg, #7c3aed, #4f46e5);
}

.btn-outline-light {
    border: 1px solid #475569;
    background: rgba(255, 255, 255, 0.05);
    color: #e2e8f0;
    padding: 0.8rem 2rem;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.btn-outline-light:hover {
    border-color: #a78bfa;
    background: rgba(139, 92, 246, 0.1);
    color: white;
}

.stats-card {
    flex: 0.9;
    min-width: 240px;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 2rem;
    padding: 1.8rem;
    border: 1px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.5);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-item:last-child {
    margin-bottom: 0;
}

.stat-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 5px #8b5cf6);
    flex-shrink: 0;
}

.stat-info h4 {
    color: #94a3b8;
    font-size: 0.85rem;
    font-weight: 500;
}

.stat-info p {
    font-size: 1.25rem;
    font-weight: 700;
    color: #f1f5f9;
}

/* ========== Feature Section (通用区块) ========== */
.feature-section {
    padding: 5rem 0;
    background: #f5f7fb;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1e1b4b, #3b0764);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.section-desc {
    text-align: center;
    color: #475569;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.glass-card {
    background: white;
    border-radius: 2rem;
    padding: 2rem;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.05);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #eef2ff;
    display: flex;
    flex-direction: column;
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 40px -12px rgba(99, 102, 241, 0.2);
    border-color: #c7d2fe;
}

.card-icon {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.glass-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1a1f2e;
}

.glass-card p {
    color: #4b5563;
    margin: 0.5rem 0 1rem;
    flex-grow: 1;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #7c3aed;
    font-weight: 600;
    text-decoration: none;
    margin-top: auto;
    transition: gap 0.25s ease;
}

.link-arrow:hover {
    gap: 0.8rem;
    color: #5b21b6;
}

/* ========== Quick Nav Cards ========== */
.quick-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.2rem;
    margin: 2rem 0 3rem;
}

.quick-nav-card {
    background: white;
    border-radius: 1.5rem;
    padding: 1.5rem 1.2rem;
    text-align: center;
    text-decoration: none;
    color: #1a1f2e;
    border: 1px solid #eef2ff;
    box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.04);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}

.quick-nav-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 30px -10px rgba(139, 92, 246, 0.2);
    border-color: #c7d2fe;
    color: #7c3aed;
}

.quick-nav-card .nav-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.quick-nav-card span {
    font-weight: 600;
    font-size: 0.95rem;
}

.quick-nav-card small {
    font-size: 0.78rem;
    color: #94a3b8;
    font-weight: 400;
}

/* ========== CTA Banner ========== */
.cta-banner {
    background: linear-gradient(135deg, #1e1b4b 0%, #0b1120 100%);
    border-radius: 2.5rem;
    padding: 3.5rem 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 2rem 0;
    border: 1px solid rgba(139, 92, 246, 0.35);
}

.cta-banner::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.25), transparent 70%);
    top: -80px;
    right: -60px;
    pointer-events: none;
}

.cta-banner h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 1;
}

.cta-banner p {
    color: #cbd5e6;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner .btn-primary {
    font-size: 1.1rem;
    padding: 1rem 2.8rem;
    position: relative;
    z-index: 1;
}

/* ========== Footer ========== */
footer {
    background: #0b1120;
    color: #9ca3af;
    padding: 2.5rem 0;
    margin-top: 3rem;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: flex-start;
}

.footer-col h5 {
    color: #e2e8f0;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.4rem;
}

.footer-col ul li a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: #c084fc;
}

.copyright {
    text-align: center;
    padding-top: 1.5rem;
    margin-top: 1rem;
    border-top: 1px solid #1f2937;
    font-size: 0.8rem;
}

/* ========== 节点页面特有样式 ========== */

/* 更新状态横幅 */
.update-status-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 1.2rem 2rem;
    box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.06);
    border: 1px solid #eef2ff;
    flex-wrap: wrap;
    justify-content: center;
}

.update-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #10b981;
    flex-shrink: 0;
    position: relative;
}

.update-dot.live::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.3);
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* 筛选标签 */
.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.filter-tag {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    color: #4b5563;
    padding: 0.55rem 1.2rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
    font-family: inherit;
}

.filter-tag:hover {
    border-color: #8b5cf6;
    color: #7c3aed;
    background: #f5f3ff;
}

.filter-tag.active {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(139, 92, 246, 0.3);
}

/* 节点卡片网格 */
.node-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

@keyframes fadeInCard {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.node-card {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 1.5rem;
    border: 1px solid #eef2ff;
    box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    cursor: default;
}

.node-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px -12px rgba(99, 102, 241, 0.2);
    border-color: #c7d2fe;
}

.node-card-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.node-region-icon {
    font-size: 2.2rem;
    line-height: 1;
    flex-shrink: 0;
}

.node-name-group {
    flex: 1;
    min-width: 0;
}

.node-name-group h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1f2e;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.node-location {
    font-size: 0.78rem;
    color: #94a3b8;
    display: block;
    margin-top: 0.15rem;
}

.node-status {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    flex-shrink: 0;
    background: #d1d5db;
    position: relative;
}

.node-status.online {
    background: #10b981;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
}

.node-status.offline {
    background: #ef4444;
}

.node-metrics {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.metric-item {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    background: #f8fafc;
    border-radius: 0.8rem;
    padding: 0.5rem 0.8rem;
    min-width: 70px;
    text-align: center;
}

.metric-label {
    font-size: 0.7rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-weight: 500;
}

.metric-value {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1f2e;
}

.metric-value.ultra-low {
    color: #059669;
}

.metric-value.low {
    color: #10b981;
}

.metric-value.medium {
    color: #f59e0b;
}

.metric-value.high {
    color: #ef4444;
}

.node-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.node-tag {
    font-size: 0.72rem;
    padding: 0.25rem 0.7rem;
    border-radius: 20px;
    font-weight: 600;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.tag-stable {
    background: #d1fae5;
    color: #065f46;
}

.tag-highspeed {
    background: #fef3c7;
    color: #92400e;
}

.tag-streaming {
    background: #ede9fe;
    color: #5b21b6;
}

.tag-gaming {
    background: #fce7f3;
    color: #9d174d;
}

.tag-premium {
    background: #e0e7ff;
    color: #3730a3;
}

.node-desc {
    font-size: 0.83rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

.no-results {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 3rem 1rem;
    text-align: center;
    color: #6b7280;
}

.no-results h3 {
    color: #1a1f2e;
}

/* 标签徽章 */
.tag-badge {
    display: inline-block;
    padding: 0.3rem 0.9rem;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* 场景卡片 */
.scenario-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.scenario-card {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid #eef2ff;
    box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.scenario-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 30px -10px rgba(99, 102, 241, 0.18);
}

.scenario-card.video-scenario {
    border-top: 4px solid #8b5cf6;
}

.scenario-card.game-scenario {
    border-top: 4px solid #f59e0b;
}

.scenario-card.browse-scenario {
    border-top: 4px solid #10b981;
}

.scenario-icon {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.scenario-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: #1a1f2e;
}

.scenario-card p {
    font-size: 0.9rem;
    color: #475569;
    margin-bottom: 0.8rem;
}

.scenario-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.scenario-card ul li {
    padding: 0.3rem 0;
    font-size: 0.85rem;
    color: #4b5563;
    position: relative;
    padding-left: 1.2rem;
}

.scenario-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 0.8rem;
}

.scenario-tip {
    display: block;
    background: #fefce8;
    border-radius: 0.8rem;
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
    color: #92400e;
    border: 1px solid #fef3c7;
}

/* 指标表格 */
.metrics-table-wrapper {
    overflow-x: auto;
    border-radius: 1.5rem;
    box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2ff;
}

.metrics-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    font-size: 0.9rem;
    min-width: 700px;
}

.metrics-table thead th {
    background: #f8fafc;
    padding: 1rem 1.2rem;
    text-align: left;
    font-weight: 700;
    color: #1a1f2e;
    border-bottom: 2px solid #eef2ff;
    white-space: nowrap;
}

.metrics-table tbody td {
    padding: 0.9rem 1.2rem;
    border-bottom: 1px solid #f1f5f9;
    color: #475569;
}

.metrics-table tbody tr:hover td {
    background: #fafaff;
}

.cell-good {
    color: #059669 !important;
    font-weight: 700;
    background: #ecfdf5;
    border-radius: 0.4rem;
    text-align: center;
}

.cell-ok {
    color: #d97706 !important;
    font-weight: 600;
    background: #fffbeb;
    border-radius: 0.4rem;
    text-align: center;
}

.cell-bad {
    color: #dc2626 !important;
    font-weight: 700;
    background: #fef2f2;
    border-radius: 0.4rem;
    text-align: center;
}

/* 归档折叠面板 */
.archive-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    max-width: 900px;
    margin: 0 auto;
}

.archive-item {
    background: #ffffff;
    border-radius: 1.2rem;
    border: 1px solid #eef2ff;
    box-shadow: 0 6px 18px -8px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: all 0.3s ease;
}

.archive-item[open] {
    border-color: #c7d2fe;
    box-shadow: 0 12px 28px -10px rgba(99, 102, 241, 0.15);
}

.archive-summary {
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #1a1f2e;
    font-size: 0.95rem;
    user-select: none;
    transition: background 0.2s;
}

.archive-summary:hover {
    background: #fafaff;
}

.archive-summary::-webkit-details-marker {
    display: none;
}

.archive-indicator {
    font-size: 0.75rem;
    color: #94a3b8;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.archive-content {
    padding: 0 1.5rem 1.5rem;
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.7;
    border-top: 1px solid #f1f5f9;
    padding-top: 1rem;
}

.archive-mini-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.8rem;
    font-size: 0.82rem;
    color: #6b7280;
    background: #f8fafc;
    padding: 0.8rem 1rem;
    border-radius: 0.8rem;
}

.archive-log-list {
    list-style: none;
    padding: 0;
}

.archive-log-list li {
    padding: 0.4rem 0;
    border-bottom: 1px dashed #f1f5f9;
    font-size: 0.85rem;
}

.archive-log-list li:last-child {
    border-bottom: none;
}

/* ========== 响应式调整 ========== */
@media (max-width: 768px) {
    .hero-text h2 {
        font-size: 2.2rem;
    }
    .nav-links {
        gap: 0.8rem;
        margin-top: 0.4rem;
    }
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .hero-grid {
        padding: 3rem 0;
        gap: 2rem;
    }
    .stats-card {
        width: 100%;
    }
    .section-title {
        font-size: 1.7rem;
    }
    .cta-banner h3 {
        font-size: 1.5rem;
    }
    .cta-banner {
        padding: 2.5rem 1.5rem;
        border-radius: 2rem;
    }
    .quick-nav-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    .update-status-bar {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 1rem 1.5rem;
    }
    .node-card-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .scenario-grid {
        grid-template-columns: 1fr;
    }
    .metrics-table {
        font-size: 0.78rem;
    }
    .metrics-table thead th,
    .metrics-table tbody td {
        padding: 0.6rem 0.8rem;
    }
    .filter-tags {
        gap: 0.4rem;
    }
    .filter-tag {
        font-size: 0.78rem;
        padding: 0.45rem 0.9rem;
    }
}

@media (max-width: 480px) {
    .quick-nav-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero-text p {
        max-width: 100%;
    }
    .btn-group {
        flex-direction: column;
        align-items: flex-start;
    }
    .node-metrics {
        gap: 0.5rem;
    }
    .metric-item {
        min-width: 55px;
        padding: 0.4rem 0.5rem;
    }
}