@font-face { font-family: 'Golos Text'; font-weight: 400; font-style: normal; src: url('fonts/GolosText-Regular.ttf') format('truetype'); }
        @font-face { font-family: 'Golos Text'; font-weight: 500; font-style: normal; src: url('fonts/GolosText-Medium.ttf') format('truetype'); }
        @font-face { font-family: 'Golos Text'; font-weight: 600; font-style: normal; src: url('fonts/GolosText-SemiBold.ttf') format('truetype'); }
        @font-face { font-family: 'JetBrains Mono'; font-weight: 400; font-style: normal; src: url('fonts/JetBrainsMono-Regular.ttf') format('truetype'); }
        @font-face { font-family: 'JetBrains Mono'; font-weight: 500; font-style: normal; src: url('fonts/JetBrainsMono-Medium.ttf') format('truetype'); }
        @font-face { font-family: 'JetBrains Mono'; font-weight: 600; font-style: normal; src: url('fonts/JetBrainsMono-SemiBold.ttf') format('truetype'); }
        @font-face { font-family: 'Unbounded'; font-weight: 400; font-style: normal; src: url('fonts/Unbounded-Regular.ttf') format('truetype'); }
        @font-face { font-family: 'Unbounded'; font-weight: 700; font-style: normal; src: url('fonts/Unbounded-Bold.ttf') format('truetype'); }
        @font-face { font-family: 'Unbounded'; font-weight: 900; font-style: normal; src: url('fonts/Unbounded-Black.ttf') format('truetype'); }
    

        :root {
            --bg: #0a0a0f;
            --surface: #111118;
            --surface-2: rgba(255,255,255,0.022);
            --border: #1e1e2e;
            --border-bright: rgba(255,255,255,0.13);
            --text: #e8e8f0;
            --text-2: #6b7a99;
            --text-3: #3d4a62;
            --accent: #f43f5e;
            --accent-light: #fb7185;
            --accent-soft: rgba(244,63,94,0.14);
            --accent-glow: rgba(244,63,94,0.32);
            --green: #4ade80;
            --green-soft: rgba(74,222,128,0.12);
            --red: #f87171;
            --red-soft: rgba(248,113,113,0.12);
            --amber: #fbbf24;
            --radius: 16px;
            --radius-sm: 10px;
            --font-sans: 'Golos Text', system-ui, sans-serif;
            --font-display: 'Unbounded', system-ui, sans-serif;
            --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
        }

        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: var(--font-sans);
            background: var(--bg);
            color: var(--text);
            min-height: 100vh;
            overflow-x: hidden;
            padding-bottom: 80px;
        }

        .orb {
            position: fixed;
            border-radius: 50%;
            filter: blur(130px);
            pointer-events: none;
            z-index: 0;
            will-change: transform;
        }
        .orb-1 {
            width: 700px; height: 700px;
            background: radial-gradient(circle, rgba(244,63,94,0.18) 0%, transparent 70%);
            top: -280px; left: -220px;
            animation: drift1 30s ease-in-out infinite alternate;
        }
        .orb-2 {
            width: 550px; height: 550px;
            background: radial-gradient(circle, rgba(139,92,246,0.13) 0%, transparent 70%);
            bottom: -180px; right: -180px;
            animation: drift2 36s ease-in-out infinite alternate;
        }
        @keyframes drift1 { from { transform: translate(0,0); } to { transform: translate(110px,80px); } }
        @keyframes drift2 { from { transform: translate(0,0); } to { transform: translate(-80px,-60px); } }

        body::before {
            content: '';
            position: fixed; inset: 0;
            background-image:
                linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
            background-size: 52px 52px;
            pointer-events: none;
            z-index: 0;
        }

        
        .topnav {
            position: sticky; top: 0; z-index: 100;
            background: rgba(8,3,12,0.82);
            backdrop-filter: blur(24px) saturate(160%);
            border-bottom: 1px solid var(--border);
        }
        .topnav-inner {
            max-width: 1100px; margin: 0 auto;
            padding: 0 24px; height: 54px;
            display: flex; align-items: center; justify-content: space-between;
        }
        .brand {
            font-family: var(--font-mono); font-size: 13px; font-weight: 600;
            color: var(--text-2); text-decoration: none; letter-spacing: 0.2px; transition: color 0.2s;
        }
        .brand span { color: var(--accent); }
        .brand:hover { color: var(--text); }
        .nav-tools { display: flex; gap: 2px; }
        .nav-tool {
            padding: 6px 14px; border-radius: 8px; font-size: 13px; font-weight: 500;
            color: var(--text-3); text-decoration: none; font-family: var(--font-mono);
            letter-spacing: 0.3px; transition: all 0.18s;
        }
        .nav-tool:hover { color: var(--text); background: var(--surface); }
        .nav-tool.active { color: #fda4af; background: rgba(244,63,94,0.12); }

        
        .container { max-width: 1100px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

        
        .header { text-align: center; padding: 68px 0 52px; }
        .header-badge {
            display: inline-flex; align-items: center; gap: 8px;
            background: var(--accent-soft); border: 1px solid rgba(244,63,94,0.28);
            color: #fda4af; padding: 6px 18px; border-radius: 999px;
            font-size: 11px; font-weight: 600; letter-spacing: 2px;
            text-transform: uppercase; font-family: var(--font-mono); margin-bottom: 28px;
        }
        .badge-dot {
            width: 7px; height: 7px; background: #f43f5e; border-radius: 50%;
            box-shadow: 0 0 8px #f43f5e; animation: pulse-dot 2s ease-in-out infinite;
        }
        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.55; transform: scale(0.82); }
        }
        .header h1 {
            font-family: var(--font-display); font-size: clamp(2.6em, 5vw, 3.8em);
            font-weight: 800; letter-spacing: -2px;
            background: linear-gradient(135deg, #f0f4ff 10%, #fda4af 80%);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
            background-clip: text; line-height: 1.05; margin-bottom: 18px;
        }
        .header p {
            font-size: 1.1em; color: var(--text-2);
            max-width: 520px; margin: 0 auto; line-height: 1.6; font-weight: 400;
        }

        
        .stats-bar {
            display: flex; align-items: center; justify-content: center;
            gap: 32px; margin-bottom: 28px; flex-wrap: wrap;
        }
        .stat-item {
            display: flex; align-items: center; gap: 10px;
            font-family: var(--font-mono); font-size: 12px; color: var(--text-3);
        }
        .stat-value { color: var(--text-2); font-weight: 600; }
        .stat-dot {
            width: 6px; height: 6px; border-radius: 50%; background: var(--text-3);
            flex-shrink: 0;
        }
        .stat-dot.live { background: #4ade80; box-shadow: 0 0 6px #4ade80; animation: pulse-dot 2.5s infinite; }
        .stat-dot.updating { background: var(--amber); box-shadow: 0 0 6px var(--amber); animation: pulse-dot 1s infinite; }

        
        .card {
            background: var(--surface); backdrop-filter: blur(24px) saturate(180%);
            border: 1px solid var(--border); border-radius: var(--radius);
            padding: 28px 32px; margin-bottom: 16px;
            box-shadow: 0 24px 64px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.06);
            position: relative; overflow: hidden;
            animation: fadeUp 0.5s cubic-bezier(0.22,1,0.36,1) both;
        }
        .card::before {
            content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
            background: linear-gradient(90deg, transparent, rgba(244,63,94,0.45), transparent);
        }
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(18px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        
        .search-form { display: flex; gap: 10px; margin-bottom: 22px; }
        .search-input {
            flex: 1; background: rgba(255,255,255,0.04);
            border: 1px solid var(--border-bright); border-radius: var(--radius-sm);
            padding: 15px 20px; font-size: 15px; font-family: var(--font-mono);
            color: var(--text); outline: none; transition: all 0.22s;
        }
        .search-input::placeholder { color: var(--text-3); }
        .search-input:focus {
            border-color: rgba(244,63,94,0.5);
            background: rgba(244,63,94,0.05);
            box-shadow: 0 0 0 3px rgba(244,63,94,0.12), 0 2px 16px rgba(244,63,94,0.08);
        }
        .search-btn {
            padding: 15px 30px;
            background: linear-gradient(135deg, #e11d48 0%, #f43f5e 100%);
            color: #fff; border: none; border-radius: var(--radius-sm);
            font-size: 14px; font-weight: 600; font-family: var(--font-sans);
            cursor: pointer; transition: all 0.22s; white-space: nowrap;
            box-shadow: 0 4px 20px rgba(244,63,94,0.28), inset 0 1px 0 rgba(255,255,255,0.15);
            letter-spacing: 0.2px;
        }
        .search-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(244,63,94,0.4); }
        .search-btn:active { transform: translateY(0); }
        .search-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

        
        .examples { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
        .examples-label {
            font-size: 11px; font-weight: 600; color: var(--text-3);
            text-transform: uppercase; letter-spacing: 1.5px; font-family: var(--font-mono);
        }
        .example-btn {
            padding: 5px 14px; background: transparent; border: 1px solid var(--border);
            border-radius: 8px; font-size: 12px; font-family: var(--font-mono);
            color: var(--text-2); cursor: pointer; transition: all 0.18s;
        }
        .example-btn:hover { color: #fda4af; border-color: rgba(244,63,94,0.32); background: rgba(244,63,94,0.06); }

        
        .spinner-wrap { text-align: center; padding: 60px 40px; }
        .spinner {
            width: 44px; height: 44px; border-radius: 50%;
            border: 2px solid rgba(244,63,94,0.15); border-top-color: #f43f5e;
            animation: spin 0.7s linear infinite; margin: 0 auto 18px;
        }
        .spinner-wrap p { color: var(--text-3); font-size: 13px; font-family: var(--font-mono); }
        @keyframes spin { to { transform: rotate(360deg); } }

        
        .status-banner {
            display: flex; align-items: center; gap: 20px;
            padding: 24px 28px; border-radius: 14px; margin-bottom: 20px;
        }
        .status-banner.blocked {
            background: var(--red-soft); border: 1px solid rgba(248,113,113,0.25);
        }
        .status-banner.clean {
            background: var(--green-soft); border: 1px solid rgba(74,222,128,0.25);
        }
        .status-icon {
            font-size: 2.2em; flex-shrink: 0; line-height: 1;
        }
        .status-info { flex: 1; }
        .status-label {
            font-family: var(--font-mono); font-size: 11px; font-weight: 600;
            letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 4px;
        }
        .status-banner.blocked .status-label { color: #f87171; }
        .status-banner.clean .status-label { color: #4ade80; }
        .status-query {
            font-family: var(--font-mono); font-size: 16px; font-weight: 600; color: var(--text);
        }
        .status-count {
            font-size: 13px; color: var(--text-2); margin-top: 3px;
        }
        .eais-link {
            display: inline-flex; align-items: center; gap: 6px;
            padding: 8px 18px; background: rgba(255,255,255,0.06);
            border: 1px solid var(--border-bright); border-radius: 8px;
            font-size: 12px; font-family: var(--font-mono); color: var(--text-2);
            text-decoration: none; transition: all 0.18s; white-space: nowrap; flex-shrink: 0;
        }
        .eais-link:hover { color: var(--text); border-color: rgba(255,255,255,0.22); background: rgba(255,255,255,0.09); }

        
        .records-header {
            display: flex; align-items: center; gap: 12px;
            margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid var(--border);
        }
        .records-title {
            font-family: var(--font-mono); font-size: 11px; font-weight: 600;
            color: var(--text-3); text-transform: uppercase; letter-spacing: 2px; flex: 1;
        }
        .records-count {
            background: var(--red-soft); border: 1px solid rgba(248,113,113,0.22);
            color: #f87171; padding: 3px 12px; border-radius: 999px;
            font-size: 11px; font-weight: 700; font-family: var(--font-mono);
        }

        .record-item {
            background: rgba(255,255,255,0.022);
            border: 1px solid rgba(255,255,255,0.05);
            border-left: 2px solid var(--accent);
            border-radius: 10px; padding: 18px 20px; margin-bottom: 10px;
            animation: fadeUp 0.4s cubic-bezier(0.22,1,0.36,1) both;
            transition: background 0.15s;
        }
        .record-item:last-child { margin-bottom: 0; }
        .record-item:hover { background: rgba(255,255,255,0.038); }

        .record-grid {
            display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 10px 24px;
        }
        .record-field { display: flex; flex-direction: column; gap: 3px; }
        .record-label {
            font-size: 10px; font-weight: 600; text-transform: uppercase;
            letter-spacing: 1.8px; color: var(--text-3); font-family: var(--font-mono);
        }
        .record-value {
            font-family: var(--font-mono); font-size: 13px; color: #94a3b8;
            word-break: break-all; line-height: 1.5;
        }
        .record-value.date { color: var(--amber); }
        .record-value.domain { color: #fda4af; }
        .record-value.ip { color: #93c5fd; }
        .record-value.url { color: #94a3b8; }
        .record-value.scope-domain { color: #f87171; }
        .record-value.scope-url { color: #fb923c; }
        .record-value.scope-ip { color: #60a5fa; }

        .scope-badge {
            display: inline-flex; align-items: center; gap: 5px;
            padding: 3px 10px; border-radius: 999px; font-size: 11px;
            font-weight: 600; font-family: var(--font-mono); letter-spacing: 0.5px;
        }
        .scope-badge.domain { background: rgba(248,113,113,0.12); color: #f87171; border: 1px solid rgba(248,113,113,0.22); }
        .scope-badge.url { background: rgba(251,146,60,0.12); color: #fb923c; border: 1px solid rgba(251,146,60,0.22); }
        .scope-badge.ip { background: rgba(96,165,250,0.12); color: #60a5fa; border: 1px solid rgba(96,165,250,0.22); }

        
        .error-box {
            background: rgba(248,113,113,0.07); border: 1px solid rgba(248,113,113,0.2);
            border-left: 2px solid #f87171; color: #fca5a5;
            padding: 18px 20px; border-radius: var(--radius-sm); font-size: 14px; line-height: 1.6;
        }

        
        .notice-box {
            background: rgba(251,191,36,0.07); border: 1px solid rgba(251,191,36,0.2);
            border-left: 2px solid var(--amber); color: #fcd34d;
            padding: 18px 20px; border-radius: var(--radius-sm); font-size: 14px; line-height: 1.6;
            font-family: var(--font-mono);
        }

        
        .footer {
            text-align: center; padding: 48px 24px 24px;
            color: var(--text-3); font-size: 13px; font-family: var(--font-mono);
            position: relative; z-index: 1;
        }
        .footer::before {
            content: ''; display: block; width: 60px; height: 1px;
            background: var(--border); margin: 0 auto 24px;
        }
        .footer a { color: var(--text-3); text-decoration: none; transition: color 0.2s; }
        .footer a:hover { color: #fda4af; }
        .footer-links { display: flex; justify-content: center; gap: 24px; margin-top: 12px; flex-wrap: wrap; }
        .footer-links a { font-size: 12px; color: var(--text-3); text-decoration: none; transition: color 0.2s; }
        .footer-links a:hover { color: var(--text-2); }
        .footer-source {
            margin-top: 10px; font-size: 11px; color: var(--text-3);
        }

        
        .tspu-notice {
            display: flex; gap: 14px; align-items: flex-start;
            font-size: 13px; line-height: 1.6; color: var(--text-2);
        }
        .tspu-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
        .tspu-notice strong { color: var(--amber); }
        .tspu-notice em { color: var(--text); font-style: normal; }

        @media (max-width: 640px) {
            .header { padding: 48px 0 36px; }
            .card { padding: 20px; }
            .search-form { flex-direction: column; }
            .search-btn { width: 100%; }
            .topnav-inner { padding: 0 16px; }
            .nav-tool { padding: 5px 10px; font-size: 12px; }
            .status-banner { flex-wrap: wrap; }
            .eais-link { width: 100%; justify-content: center; }
            .record-grid { grid-template-columns: 1fr; }
            .stats-bar { gap: 16px; }
        }
        
        .nav-burger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 6px 4px;
            z-index: 201;
        }
        .nav-burger span {
            display: block;
            width: 22px; height: 2px;
            background: var(--text);
            transition: all .28s ease;
            border-radius: 1px;
        }
        .nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .nav-burger.open span:nth-child(2) { opacity: 0; }
        .nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
        @media (max-width: 720px) {
            .nav-tools { display: none; }
            .nav-burger { display: flex; }
        }
        
        .nav-mobile {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 8000;
            background: rgba(10,10,15,.97);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 4px;
        }
        .nav-mobile.open { display: flex; }
        .nav-mobile .m-link {
            font-size: 16px;
            padding: 13px 36px;
            width: 240px;
            text-align: center;
            border-radius: 8px;
            color: #6b7a99;
            text-decoration: none;
            font-family: 'JetBrains Mono', monospace;
            letter-spacing: 0.3px;
            transition: all 0.18s;
        }
        .nav-mobile .m-link:hover { color: #e8e8f0; background: #111118; }
        .nav-mobile .m-link.active { color: #fda4af; background: rgba(244,63,94,0.12); }
        .nav-mobile-close {
            position: absolute;
            top: 16px; right: 20px;
            background: none;
            border: 1px solid #2a1e2e;
            color: #3d4a62;
            font-size: 18px;
            cursor: pointer;
            padding: 6px 10px;
            transition: all .2s;
            font-family: 'JetBrains Mono', monospace;
            line-height: 1;
        }
        .nav-mobile-close:hover { border-color: #f43f5e; color: #f43f5e; }
        
        .cookie-bar {
            position: fixed;
            bottom: 0; left: 0; right: 0;
            z-index: 9000;
            background: rgba(10,10,15,.97);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-top: 1px solid #2a1e2e;
            padding: 20px 0;
            transform: translateY(100%);
            transition: transform .45s cubic-bezier(.25,.8,.25,1);
        }
        .cookie-bar.visible { transform: translateY(0); }
        .cookie-bar-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 28px;
            display: flex;
            align-items: center;
            gap: 24px;
            flex-wrap: wrap;
        }
        .cookie-bar-icon { flex-shrink: 0; font-size: 24px; line-height: 1; }
        .cookie-bar-text { flex: 1; min-width: 220px; font-size: 13px; color: #6b7a99; line-height: 1.55; }
        .cookie-bar-text strong { display: block; color: #e8e8f0; font-size: 13.5px; margin-bottom: 3px; }
        .cookie-bar-text a { color: #f43f5e; text-decoration: underline; text-underline-offset: 2px; cursor: pointer; }
        .cookie-bar-actions { display: flex; gap: 10px; flex-shrink: 0; }
        .cookie-btn {
            padding: 9px 22px;
            font-family: 'Unbounded', sans-serif;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: .08em;
            text-transform: uppercase;
            cursor: pointer;
            border: none;
            transition: all .25s ease;
        }
        .cookie-btn-accept { background: #f43f5e; color: #fff; }
        .cookie-btn-accept:hover { background: #fb7185; box-shadow: 0 6px 24px rgba(244,63,94,.35); }
        .cookie-btn-decline { background: transparent; color: #3d4a62; border: 1px solid #2a1e2e; }
        .cookie-btn-decline:hover { border-color: #6b7a99; color: #e8e8f0; }
        @media (max-width: 600px) {
            .cookie-bar-actions { width: 100%; }
            .cookie-btn { flex: 1; text-align: center; }
        }
        
        .privacy-overlay {
            position: fixed;
            inset: 0;
            z-index: 9500;
            background: rgba(0,0,0,.75);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 24px;
            opacity: 0;
            pointer-events: none;
            transition: opacity .3s ease;
        }
        .privacy-overlay.open { opacity: 1; pointer-events: all; }
        .privacy-modal {
            background: #0e0e18;
            border: 1px solid #2a1e2e;
            max-width: 680px;
            width: 100%;
            max-height: 82vh;
            display: flex;
            flex-direction: column;
            transform: translateY(20px);
            transition: transform .3s ease;
            position: relative;
        }
        .privacy-overlay.open .privacy-modal { transform: translateY(0); }
        .privacy-modal::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 2px;
            background: linear-gradient(90deg, #f43f5e, #8b5cf6);
        }
        .privacy-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 26px 34px 22px;
            border-bottom: 1px solid #1e1e2e;
            flex-shrink: 0;
        }
        .privacy-title { font-family: 'Unbounded', sans-serif; font-size: 18px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: #e8e8f0; }
        .privacy-close {
            width: 34px; height: 34px;
            display: flex; align-items: center; justify-content: center;
            border: 1px solid #2a1e2e;
            background: none;
            color: #3d4a62;
            cursor: pointer;
            transition: all .25s ease;
            flex-shrink: 0;
        }
        .privacy-close:hover { border-color: #f43f5e; color: #f43f5e; }
        .privacy-body { overflow-y: auto; padding: 30px 34px 34px; font-size: 13.5px; color: #6b7a99; line-height: 1.75; }
        .privacy-body::-webkit-scrollbar { width: 3px; }
        .privacy-body::-webkit-scrollbar-track { background: transparent; }
        .privacy-body::-webkit-scrollbar-thumb { background: #2a1e2e; }
        .privacy-body h3 { font-family: 'Unbounded', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: #e8e8f0; margin: 26px 0 8px; }
        .privacy-body h3:first-child { margin-top: 0; }
        .privacy-body p { margin-bottom: 10px; }
        .privacy-body ul { padding-left: 18px; margin-bottom: 10px; }
        .privacy-body ul li { margin-bottom: 5px; }
        .privacy-body a { color: #f43f5e; text-underline-offset: 2px; }
        .privacy-updated { display: inline-block; font-family: 'JetBrains Mono', monospace; font-size: 10px; color: #3d4a62; letter-spacing: .06em; margin-bottom: 22px; padding: 5px 10px; border: 1px solid #1e1e2e; }
        @media (max-width: 600px) {
            .privacy-head { padding: 20px 18px 16px; }
            .privacy-body { padding: 22px 18px 26px; }
        }
.ad-1 { animation-delay: 0.1s; }
.ad-2 { animation-delay: 0.2s; }

/* rkn delays are handled by default card animation */

.c-amber { color: var(--amber); }
.c-error { color: #f87171; }
.bg-error { background: #f87171; }
