@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;
        }
        .orb-1 {
            width: 800px; height: 800px;
            background: radial-gradient(circle, rgba(244,63,94,0.18) 0%, transparent 70%);
            top: -320px; left: -260px;
            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(100px,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(10,10,15,0.82);
            backdrop-filter: blur(24px) saturate(160%);
            border-bottom: 1px solid var(--border);
        }
        .topnav-inner {
            max-width: 1000px;
            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: 1000px;
            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.5; transform: scale(0.8); }
        }
        .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, #e8e8f0 10%, #f43f5e 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: 480px;
            margin: 0 auto;
            line-height: 1.6;
        }

        
        .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.4),
                        inset 0 1px 0 rgba(255,255,255,0.05);
            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.5), transparent);
        }
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(18px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        
        .search-form {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }
        .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.55);
            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, #f43f5e 0%, #fb7185 100%);
            color: #fff;
            border: none;
            border-radius: var(--radius-sm);
            font-size: 14px;
            font-weight: 700;
            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.2);
            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); }

        
        .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.35);
            background: rgba(244,63,94,0.07);
        }

        
        .ssl-status {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 22px 26px;
            border-radius: var(--radius-sm);
            margin-bottom: 20px;
            border: 1px solid;
        }
        .ssl-status.valid {
            background: rgba(16,185,129,0.08);
            border-color: rgba(16,185,129,0.25);
            color: #6ee7b7;
        }
        .ssl-status.warning {
            background: rgba(251,191,36,0.08);
            border-color: rgba(251,191,36,0.25);
            color: #fde68a;
        }
        .ssl-status.invalid {
            background: rgba(248,113,113,0.08);
            border-color: rgba(248,113,113,0.25);
            color: #fca5a5;
        }
        .ssl-icon {
            font-size: 2em;
            line-height: 1;
        }
        .ssl-status-text {
            font-family: var(--font-display);
            font-size: 1.25em;
            font-weight: 700;
        }

        
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 12px;
            margin-bottom: 20px;
        }
        .info-item {
            background: var(--surface-2);
            border: 1px solid var(--border);
            border-left: 2px solid var(--accent);
            padding: 18px 20px;
            border-radius: var(--radius-sm);
            transition: border-color 0.2s, background 0.2s;
        }
        .info-item:hover {
            background: rgba(255,255,255,0.035);
            border-left-color: var(--accent-light);
        }
        .info-label {
            font-size: 10px;
            color: var(--text-2);
            text-transform: uppercase;
            letter-spacing: 1.8px;
            margin-bottom: 8px;
            font-weight: 600;
            font-family: var(--font-mono);
        }
        .info-value {
            font-size: 14px;
            color: var(--text);
            word-break: break-all;
            font-family: var(--font-mono);
            line-height: 1.5;
        }

        
        .cert-details {
            background: rgba(0,0,0,0.35);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 22px 24px;
            font-family: var(--font-mono);
            font-size: 13px;
            line-height: 1.9;
            margin-top: 4px;
            overflow-x: auto;
        }
        .cert-section { margin-bottom: 20px; }
        .cert-section:last-child { margin-bottom: 0; }
        .cert-section-title {
            color: var(--accent-light);
            font-weight: 600;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
            padding-bottom: 8px;
            border-bottom: 1px solid var(--border);
        }
        .cert-field { margin-left: 16px; margin-bottom: 3px; }
        .cert-key { color: #4a7a66; }
        .cert-value { color: #94b8a8; }

        
        .error {
            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;
        }

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

        
        .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: var(--accent-light); }
        .footer-links { display: flex; justify-content: center; gap: 24px; margin-top: 12px; }
        .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); }

        @media (max-width: 640px) {
            .header { padding: 48px 0 36px; }
            .header h1 { font-size: 2.4em; }
            .card { padding: 20px; }
            .search-form { flex-direction: column; }
            .search-btn { width: 100%; }
            .info-grid { grid-template-columns: 1fr; }
        }
        
        .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; }
