        :root {
            --primary: #165DFF;
            --primary-light: #4080FF;
            --primary-dark: #0E42D2;
            --primary-glass: rgba(22, 93, 255, 0.08);
            --primary-glass-dark: rgba(22, 93, 255, 0.15);
            --secondary: #6B7280;
            --secondary-rect: #3ac47d;
            --success: #00B42A;
            --warning: #FF7D00;
            --danger: #F53F3F;
            --dark: #1D2129;
            --light: #F9FAFB;
            --border: #E5E7EB;
            --card-bg: #FFFFFF;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
            --shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.1);
            --radius: 8px;
            --radius-lg: 12px;
            --border-radius: 12px;
            --transition: all 0.25s ease;
            --gradient: linear-gradient(135deg, var(--primary), var(--primary-dark));
            --gradient-light: linear-gradient(135deg, var(--primary-light), var(--primary));
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.5;
            overflow-x: hidden;
            padding-top: 64px;
        }

        h1, h2, h3, h4, h5, h6 {
            color: var(--dark);
            font-weight: 600;
            line-height: 1.3;
        }

        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }

        a:hover {
            color: var(--primary-dark);
        }

        button {
            font-family: inherit;
            border: none;
            background: none;
            cursor: pointer;
            transition: var(--transition);
        }
        label {
            display: inline-block;
            margin-bottom: .5rem;
            -moz-user-select: none;
            -webkit-user-select: none;
            -ms-user-select: none;
            -khtml-user-select: none;
            user-select: none;
            cursor: pointer;
        }
        /* 导航栏样式 */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 50;
            background-color: var(--card-bg);
            border-bottom: 1px solid var(--border);
            transition: var(--transition);
        }

        .navbar-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 64px;
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .navbar-logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--dark);
        }

        .navbar-logo i {
            color: var(--primary);
            font-size: 1.5rem;
        }

        .navbar-menu {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .navbar-item {
            list-style: none;
        }

        .navbar-link {
            color: var(--secondary);
            font-weight: 500;
            padding: 0.5rem 0;
            position: relative;
        }

        .navbar-link:hover, .navbar-link.active {
            color: var(--primary);
        }

        .navbar-link.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--primary);
            border-radius: 2px;
        }

        .navbar-cta {
            background: var(--gradient);
            color: white;
            padding: 0.6rem 1.25rem;
            border-radius: var(--radius);
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            box-shadow: 0 4px 12px rgba(22, 93, 255, 0.2);
        }

        .navbar-cta:hover {
            background: var(--gradient-light);
            box-shadow: 0 6px 16px rgba(22, 93, 255, 0.25);
        }

        .navbar-hamburger {
            display: none;
            font-size: 1.25rem;
            color: var(--dark);
        }
        
        /* 移动端菜单 */
        .mobile-menu {
            position: fixed;
            top: 64px;
            left: 0;
            right: 0;
            background-color: var(--card-bg);
            box-shadow: var(--shadow-sm);
            z-index: 40;
            padding: 1rem;
            transform: translateY(-100%);
            opacity: 0;
            pointer-events: none;
            transition: var(--transition);
        }

        .mobile-menu.active {
            transform: translateY(0);
            opacity: 1;
            pointer-events: all;
        }

        .mobile-menu-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .mobile-menu-item a {
            color: var(--secondary);
            font-weight: 500;
            display: block;
            padding: 0.5rem 0;
        }

        .mobile-menu-item a:hover {
            color: var(--primary);
        }

        .mobile-cta {
            margin-top: 0.5rem;
            background: var(--gradient);
            color: white;
            padding: 0.7rem 1.25rem;
            border-radius: var(--radius);
            font-weight: 500;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            box-shadow: 0 4px 12px rgba(22, 93, 255, 0.2);
        }
        
        /* 头部区域 */
        .header {
            padding: 40px 0 30px;
            background-color: var(--primary-glass);
            position: relative;
            overflow: hidden;
        }

        .header::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -15%;
            width: 500px;
            height: 500px;
            background: var(--primary-glass-dark);
            border-radius: 50%;
            filter: blur(100px);
            z-index: 0;
        }

        .header-content {
            position: relative;
            z-index: 1;
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .header-tag {
            display: inline-block;
            background-color: var(--primary);
            color: white;
            font-size: 0.75rem;
            font-weight: 500;
            padding: 0.3rem 0.75rem;
            border-radius: 999px;
            margin-bottom: 1rem;
        }

        .header-title {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .header-desc {
            font-size: 1rem;
            color: var(--secondary);
            margin-bottom: 1.5rem;
        }

        .header-stats {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

        .header-stat-item {
            display: flex;
            flex-direction: column;
        }

        .header-stat-value {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--primary);
        }

        .header-stat-label {
            font-size: 0.875rem;
            color: var(--secondary);
        }
        
        /* 主内容区 */
        .main {
            padding: 2rem 0;
        }
        
        .detection-container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        
        .domain-input-section {
            background: var(--card-bg);
            border-radius: var(--border-radius);
            padding: 25px;
            box-shadow: var(--shadow);
            margin-bottom: 25px;
        }
        
        .input-group {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .input-group input {
            flex: 1;
            padding: 12px 16px;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            font-size: 1rem;
        }
        
        .input-group button {
            background: var(--gradient);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: var(--radius);
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .input-group button:hover {
            background: var(--gradient-light);
            box-shadow: 0 6px 16px rgba(22, 93, 255, 0.25);
        }
        
        .loading-container {
            background: var(--card-bg);
            border-radius: var(--border-radius);
            padding: 25px;
            box-shadow: var(--shadow);
            margin-bottom: 25px;
            display: none;
        }
        
        .progress-container {
            margin: 20px 0;
        }
        
        .progress-bar {
            height: 8px;
            background-color: var(--border);
            border-radius: 4px;
            overflow: hidden;
        }
        
        .progress-inner {
            height: 100%;
            background: var(--gradient);
            width: 0%;
            transition: width 0.3s ease;
        }
        
        .progress-steps {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
        }
        
        .scan-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            flex: 1;
            position: relative;
        }
        
        .scan-step:not(:last-child):after {
            content: '';
            position: absolute;
            top: 15px;
            left: 50%;
            width: 100%;
            height: 2px;
            background: var(--border);
            z-index: 1;
        }
        
        .scan-step.active:not(:last-child):after {
            background: var(--primary);
        }
        
        .step-icon {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 14px;
            position: relative;
            z-index: 2;
        }
        
        .scan-step.active .step-icon {
            background: var(--primary);
        }
        
        .step-label {
            margin-top: 8px;
            font-size: 12px;
            text-align: center;
            color: var(--secondary);
        }
        
        .scan-step.active .step-label {
            color: var(--primary);
            font-weight: 500;
        }
        
        .result-container {
            background: var(--card-bg);
            border-radius: var(--border-radius);
            padding: 0;
            box-shadow: var(--shadow);
            margin-bottom: 25px;
            display: none;
            overflow: hidden;
        }
        
        /* 优化后的结果头部样式 */
        .result-header {
            background: var(--gradient);
            color: white;
            padding: 25px 30px;
            display: flex;
            align-items: center;
            gap: 15px;
            position: relative;
            overflow: hidden;
        }
        
        .result-header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            z-index: 0;
        }
        
        .result-header::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -5%;
            width: 150px;
            height: 150px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            z-index: 0;
        }
        
        .result-header-icon {
            font-size: 2.5rem;
            z-index: 1;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        
        .result-header-content {
            z-index: 1;
            flex: 1;
        }
        
        .result-header-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 5px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .result-header-domain {
            font-size: 1rem;
            opacity: 0.9;
            font-weight: 500;
        }
        
        .result-header-actions {
            display: flex;
            gap: 10px;
            z-index: 1;
        }
        
        .result-header-btn {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: var(--radius);
            cursor: pointer;
            transition: var(--transition);
            font-size: 0.85rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 5px;
            backdrop-filter: blur(5px);
        }
        
        .result-header-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
        }
        /* 优化后的表格样式 - 外边框 + 横竖线 */
        .result-table-container {
            padding: 25px 30px;
        }

        .result-table {
            width: 100%;
            border-collapse: separate; /* 改为 separate */
            border-spacing: 0; /* 保持单元格无缝 */
            border: 2px solid var(--primary-light);
            border-radius: var(--radius);
            overflow: hidden; /* 保证圆角生效 */
        }


        /* 表头样式 */
        .result-table th {
            background: #cfe0ff;
            color: #333;
            padding: 16px 20px;
            text-align: left;
            font-weight: 600;
            font-size: 0.95rem;

            /* 单元格边框 */
            border-bottom: 2px solid #4080FF;
            border-right: 2px solid #4080FF;
        }

        .result-table th:last-child {
            border-right: none;
        }

        /* 表格内容样式 */
        .result-table td {
            padding: 14px 20px;
            border-bottom: 2px solid #4080FF;
            border-right: 2px solid #4080FF;
            background: var(--card-bg);
            transition: var(--transition);
        }

        .result-table td:last-child {
            border-right: none;
        }

        .result-table tr:last-child td {
            border-bottom: none;
        }

        /* 偶数行背景色 */
        .result-table tr:nth-child(even) td {
            background: #fafbfc;
        }

        /* 悬停高亮 */
        .result-table tr:hover td {
            background: #f0f4ff;
        }

        /* 成功状态 */
        .table-success {
            color: var(--success);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .table-success:before {
            content: "✓";
            font-weight: bold;
        }

        /* 失败状态 */
        .table-danger {
            color: var(--danger);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .table-danger:before {
            content: "✕";
            font-weight: bold;
        }
        
        /* 优化后的徽章容器样式 */
/* 优化后的徽章容器样式 */
.badge-container {
    padding: 35px 30px; /* 内边距 */
    text-align: center;
    margin: 40px; /* 外边距，上下左右均为 40px，可根据需求调整 */
    background: linear-gradient(135deg, #f8f9ff, #f0f4ff);
    border-radius: var(--border-radius);
    border: 1px solid rgba(22, 93, 255, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

        
        .badge-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient);
        }
        
        .badge-container::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(22, 93, 255, 0.05) 0%, rgba(22, 93, 255, 0) 70%);
            transform: translate(-50%, -50%);
            z-index: 0;
        }
        
        .badge-success-icon {
            font-size: 3rem;
            color: var(--success);
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
            text-shadow: 0 2px 4px rgba(0, 180, 42, 0.2);
        }
        
        .badge-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--dark);
            position: relative;
            z-index: 1;
        }
        
        .badge-subtitle {
            font-size: 1rem;
            color: var(--secondary);
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
            position: relative;
            z-index: 1;
        }
        
        .badge-preview {
            margin-bottom: 30px;
            padding: 25px;
            background: white;
            border-radius: var(--radius);
            display: inline-block;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border);
            position: relative;
            z-index: 1;
            transition: var(--transition);
        }
        
        .badge-preview:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        
        .badge-code-container {
            position: relative;
            margin: 25px 0;
            border-radius: var(--radius);
            overflow: hidden;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            box-shadow: var(--shadow);
            border: 1px solid #2a2a2a;
            position: relative;
            z-index: 1;
        }
        
        .badge-code-header {
            background: linear-gradient(135deg, #2c3e50, #34495e);
            color: white;
            padding: 14px 20px;
            font-size: 14px;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid #404854;
        }
        
        .badge-code {
            background: #1e1e1e;
            color: #d4d4d4;
            padding: 20px;
            font-family: 'Fira Code', 'Courier New', monospace;
            font-size: 14px;
            line-height: 1.6;
            overflow-x: auto;
            text-align: left;
            white-space: pre-wrap;
            word-break: break-all;
        }
        
        .badge-code span {
            color: #569cd6; /* 代码高亮颜色 */
        }
        
        .badge-code .attr {
            color: #9cdcfe;
        }
        
        .badge-code .value {
            color: #ce9178;
        }
        
        .badge-code .tag {
            color: #569cd6;
        }
        
        .badge-code .comment {
            color: #6a9955;
        }
        
        .badge-actions {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 25px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }
        
        .copy-btn {
            background: var(--gradient);
            color: white;
            border: none;
            padding: 14px 28px;
            border-radius: var(--radius);
            cursor: pointer;
            transition: var(--transition);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 12px rgba(22, 93, 255, 0.2);
        }
        
        .copy-btn:hover {
            background: var(--gradient-light);
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(22, 93, 255, 0.3);
        }
        
        .copy-btn.copied {
            background: var(--success);
        }
        
        .preview-btn {
            background: white;
            color: var(--primary);
            border: 1px solid var(--primary);
            padding: 14px 28px;
            border-radius: var(--radius);
            cursor: pointer;
            transition: var(--transition);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .preview-btn:hover {
            background: var(--primary-glass);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(22, 93, 255, 0.1);
        }
        
        .badge-note {
            font-size: 14px;
            color: var(--success);
            margin-top: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: rgba(0, 180, 42, 0.1);
            padding: 12px 20px;
            border-radius: var(--radius);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            z-index: 1;
        }
        
        /* 访客信息区域 */
        .visitor-info {
            background: var(--card-bg);
            border-radius: var(--border-radius);
            padding: 25px;
            box-shadow: var(--shadow);
            margin-bottom: 25px;
        }
        
        .visitor-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
        }
        
        .visitor-header h3 {
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .refresh-btn {
            background: var(--light);
            color: var(--primary);
            border: 1px solid var(--border);
            padding: 8px 16px;
            border-radius: var(--radius);
            cursor: pointer;
            transition: var(--transition);
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .refresh-btn:hover {
            background: var(--primary-glass);
        }
        
        .visitor-details {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }
        
        .visitor-card {
            background: var(--light);
            border-radius: var(--radius);
            padding: 20px;
            transition: var(--transition);
        }
        
        .visitor-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-sm);
        }
        
        .visitor-card-title {
            font-size: 14px;
            font-weight: 600;
            color: var(--secondary);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .visitor-card-content {
            font-size: 15px;
            font-weight: 500;
            color: var(--dark);
            word-break: break-all;
        }
        
        .visitor-card.highlight {
            background: linear-gradient(135deg, #e6f7ff, #f0f7ff);
            border-left: 4px solid var(--primary);
        }
        
        .features {
            display: none;
            background: var(--card-bg);
            border-radius: var(--border-radius);
            padding: 25px;
            box-shadow: var(--shadow);
            margin-bottom: 25px;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .feature-card {
            background: var(--light);
            padding: 20px;
            border-radius: var(--radius);
            text-align: center;
            transition: var(--transition);
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-sm);
        }
        
        .feature-icon {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .feature-title {
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .feature-desc {
            font-size: 14px;
            color: var(--secondary);
        }
        
        /* 页脚区 */
        .footer {
            background-color: var(--dark);
            color: rgba(255, 255, 255, 0.7);
            padding: 2rem 0 1.5rem;
        }

        .footer-container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .footer-top {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 1.25rem;
            font-weight: 600;
            color: white;
        }

        .footer-logo i {
            color: var(--primary);
            font-size: 1.5rem;
        }

        .footer-desc {
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.6;
            max-width: 300px;
        }

        .footer-links-title {
            font-size: 1rem;
            color: white;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .footer-links-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .footer-link {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .footer-link:hover {
            color: var(--primary);
            padding-left: 4px;
        }

        .footer-bottom {
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .footer-bottom-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
        }

        .footer-bottom-link {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.85rem;
        }

        .footer-bottom-link:hover {
            color: var(--primary);
        }

        .footer-copyright {
            text-align: center;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.4);
        }
        
        /* 响应式设计 */
        @media (min-width: 768px) {
            .header-title {
                font-size: 2.25rem;
            }
            
            .header-desc {
                font-size: 1.1rem;
            }
            
            .header-stat-value {
                font-size: 1.5rem;
            }
            
            .badge-title {
                font-size: 1.75rem;
            }
            
            .result-header-title {
                font-size: 1.75rem;
            }
        }

        @media (max-width: 767px) {
            .navbar-menu {
                display: none;
            }
            
            .navbar-cta {
                display: none;
            }
            
            .navbar-hamburger {
                display: block;
            }
            
            .progress-steps {
                flex-wrap: wrap;
                gap: 15px;
            }
            
            .scan-step {
                flex: 0 0 calc(50% - 15px);
            }
            
            .scan-step:not(:last-child):after {
                display: none;
            }
            
            .result-table {
                display: block;
                overflow-x: auto;
            }
            
            .visitor-details {
                grid-template-columns: 1fr;
            }
            
            .visitor-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .badge-actions {
                flex-direction: column;
                align-items: center;
            }
            
            .copy-btn, .preview-btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
            
            .badge-code {
                padding: 15px;
                font-size: 13px;
            }
            
            .badge-container {
                padding: 25px 20px;
            }
            
            .result-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
                padding: 20px;
            }
            
            .result-header-actions {
                width: 100%;
                justify-content: space-between;
            }
            
            .result-header-btn {
                flex: 1;
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .header-title {
                font-size: 1.75rem;
            }
            
            .header-stats {
                gap: 1rem;
            }
            
            .header-stat-item {
                align-items: center;
            }
        }