.country-flag {
            width: 22px;
            height: 16px;
            object-fit: cover;
            vertical-align: middle;
            margin-right: 6px;
            border-radius: 2px;
            box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.06);
            background: #f1f5f9;
        }
        @keyframes rowIn {
            from { opacity: 0; transform: translateY(4px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .status-badge {
            display: inline-block;
            padding: 4px 10px;
            border-radius: 8px;
            font-size: 0.82rem;
            font-weight: 600;
        }
        .status-safe { background: #dcfce7; color: #166534; }
        .status-warn { background: #fef3c7; color: #92400e; }
        .status-danger { background: #fee2e2; color: #991b1b; }
        .status-info { background: #e0f2fe; color: #075985; }
        .leak-status-box {
            border-radius: 12px;
            padding: 14px 16px;
            border: 1px solid #e2e8f0;
            background: #f8fafc;
            margin-bottom: 14px;
        }
        .leak-status-line {
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }
        .leak-status-text {
            flex: 1;
            font-size: 0.88rem;
            line-height: 1.65;
            color: #475569;
        }
        .leak-status-extra {
            margin-top: 10px;
            padding-top: 10px;
            border-top: 1px dashed #e2e8f0;
            font-size: 0.84rem;
            color: #64748b;
            line-height: 1.6;
        }
        .leak-status-extra code {
            font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
            font-size: 0.82rem;
            background: rgba(15, 23, 42, 0.05);
            padding: 1px 6px;
            border-radius: 4px;
        }
        .leak-safe { background: #f0fdf4; border-color: #bbf7d0; }
        .leak-warn { background: #fffbeb; border-color: #fde68a; }
        .leak-danger { background: #fef2f2; border-color: #fecaca; }
        .ip-ver-tag {
            display: inline-block;
            margin-right: 8px;
            padding: 1px 6px;
            border-radius: 4px;
            font-size: 0.72rem;
            font-weight: 600;
            font-family: "Noto Sans SC", sans-serif;
            vertical-align: middle;
        }
        .ip-ver-v4 { background: #dbeafe; color: #1d4ed8; }
        .ip-ver-v6 { background: #ede9fe; color: #6d28d9; }

        .dns-card {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgb(0 0 0 / 8%);
            padding: 20px;
            background: #fff;
            margin: 15px 0;
        }
        .dns-card-title {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            font-size: 1.05rem;
            margin-bottom: 12px;
        }
        .dns-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 12px;
        }
        .dns-table th, .dns-table td {
            padding: 10px 12px;
            text-align: left;
            border-bottom: 1px solid #eef2f7;
            font-size: 0.9rem;
        }
        .dns-table th {
            background: #f8fafc;
            color: #475569;
            font-weight: 600;
        }
        .dns-table tr:last-child td { border-bottom: none; }
        .dns-faq-h3 {
            font-size: 0.95rem;
            font-weight: 600;
            color: #334155;
            margin: 20px 0 10px;
        }
        .dns-faq-h3:first-child { margin-top: 0; }
        .dns-faq-p {
            margin: 0 0 10px;
            color: #64748b;
            font-size: 0.88rem;
            line-height: 1.75;
        }
        .dns-faq-ul {
            margin: 0 0 12px;
            padding-left: 1.25rem;
            color: #64748b;
            font-size: 0.88rem;
            line-height: 1.75;
        }
        .dns-faq-ul li { margin-bottom: 6px; }
        .dns-faq-ul li:last-child { margin-bottom: 0; }
        .dns-ip-row td:first-child { font-family: monospace; }
        .dns-ip-row {
            animation: rowIn 0.25s ease;
        }
        .dns-loading-row td {
            text-align: center;
            padding: 28px 12px;
            color: #64748b;
            border-bottom: none;
        }
        .dns-loading-inner {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-size: 0.9rem;
        }
        .dns-loading-spinner {
            width: 18px;
            height: 18px;
            border: 2px solid #dbeafe;
            border-top-color: #3794f8;
            border-radius: 50%;
            animation: dnsSpin 0.8s linear infinite;
            flex-shrink: 0;
        }
@keyframes dnsSpin {
            to { transform: rotate(360deg); }
        }
