@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);
    --accent: #f43f5e;
    --accent2: #fb7185;
    --accent-light: #fb7185;
    --accent-soft: rgba(244,63,94,0.14);
    --accent-glow: rgba(244,63,94,0.32);
    --ok: #22c55e;
    --warn: #f59e0b;
    --danger: #ef4444;
    --text: #e8e8f0;
    --muted: #6b6b80;
    --card: #13131c;
    --text-2: #6b7a99;
    --text-3: #3d4a62;
    --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;
  }

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

  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Golos Text', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
  }

  
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,60,60,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,60,60,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
  }
.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: 860px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
  }

  
  header {
    padding: 60px 0 48px;
    text-align: center;
  }

  .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,60,60,0.1);
    border: 1px solid rgba(255,60,60,0.2);
    color: var(--accent);
    font-family: 'Unbounded', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 28px;
  }

  .badge::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
  }

  h1 {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 16px;
  }

  h1 span {
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .subtitle {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
    max-width: 520px;
    margin: 0 auto 40px;
  }

  
  .search-wrap {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 6px 6px 6px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: border-color 0.2s;
    margin-bottom: 16px;
  }

  .search-wrap:focus-within {
    border-color: rgba(255,60,60,0.4);
    box-shadow: 0 0 0 3px rgba(255,60,60,0.08);
  }

  .search-icon {
    color: var(--muted);
    font-size: 18px;
    flex-shrink: 0;
  }

  #urlInput {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: var(--text);
    font-family: 'Golos Text', sans-serif;
    font-size: 16px;
    padding: 10px 0;
  }

  #urlInput::placeholder { color: var(--muted); }

  #checkBtn {
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    border: none;
    color: white;
    font-family: 'Unbounded', sans-serif;
    font-size: 13px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 10px;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s, transform 0.1s;
    letter-spacing: 0.5px;
  }

  #checkBtn:hover { opacity: 0.9; }
  #checkBtn:active { transform: scale(0.98); }
  #checkBtn:disabled { opacity: 0.5; cursor: not-allowed; }

  .hint {
    text-align: center;
    color: var(--muted);
    font-size: 13px;
  }

  
  #loading {
    display: none;
    text-align: center;
    padding: 60px 0;
  }

  .spinner {
    width: 48px; height: 48px;
    border: 3px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 20px;
  }

  @keyframes spin { to { transform: rotate(360deg); } }

  .loading-text {
    color: var(--muted);
    font-size: 14px;
    animation: fadeText 3s infinite;
  }

  @keyframes fadeText {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
  }

  
  #error {
    display: none;
    background: rgba(239,68,68,0.1);
    border: 1px solid rgba(239,68,68,0.3);
    border-radius: 12px;
    padding: 16px 20px;
    color: var(--danger);
    text-align: center;
    margin-top: 20px;
  }

  
  #results { display: none; margin-top: 40px; }

  
  .summary-card {
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
  }

  .summary-card.critical { background: linear-gradient(135deg, rgba(239,68,68,0.15), rgba(239,68,68,0.05)); border: 1px solid rgba(239,68,68,0.3); }
  .summary-card.high { background: linear-gradient(135deg, rgba(239,68,68,0.1), rgba(255,122,60,0.05)); border: 1px solid rgba(239,68,68,0.2); }
  .summary-card.medium { background: linear-gradient(135deg, rgba(245,158,11,0.1), rgba(245,158,11,0.05)); border: 1px solid rgba(245,158,11,0.2); }
  .summary-card.low { background: linear-gradient(135deg, rgba(34,197,94,0.1), rgba(34,197,94,0.05)); border: 1px solid rgba(34,197,94,0.2); }

  .summary-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 28px;
  }

  .risk-badge {
    font-family: 'Unbounded', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
  }

  .risk-badge.critical { background: rgba(239,68,68,0.2); color: #ff6b6b; border: 1px solid rgba(239,68,68,0.3); }
  .risk-badge.high { background: rgba(239,68,68,0.15); color: #ff8a8a; border: 1px solid rgba(239,68,68,0.2); }
  .risk-badge.medium { background: rgba(245,158,11,0.15); color: #fbbf24; border: 1px solid rgba(245,158,11,0.2); }
  .risk-badge.low { background: rgba(34,197,94,0.15); color: #4ade80; border: 1px solid rgba(34,197,94,0.2); }

  .domain-info {
    color: var(--muted);
    font-size: 13px;
    margin-top: 4px;
  }

  .fine-block {
    text-align: right;
  }

  .fine-label {
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
  }

  .fine-amount {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(22px, 4vw, 36px);
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
  }

  .fine-range {
    color: var(--muted);
    font-size: 12px;
    margin-top: 4px;
  }

  .stats-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  .stat-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 8px 16px;
    font-size: 14px;
  }

  .stat-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
  }

  .stat-dot.danger { background: var(--danger); box-shadow: 0 0 6px var(--danger); }
  .stat-dot.warning { background: var(--warn); box-shadow: 0 0 6px var(--warn); }
  .stat-dot.ok { background: var(--ok); box-shadow: 0 0 6px var(--ok); }

  
  .checks-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
  }

  .check-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 10px;
    transition: transform 0.15s;
    animation: slideIn 0.3s ease backwards;
  }

  @keyframes slideIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .check-item:hover { transform: translateY(-1px); }
  .check-item.danger { border-left: 3px solid var(--danger); }
  .check-item.warning { border-left: 3px solid var(--warn); }
  .check-item.ok { border-left: 3px solid var(--ok); }

  .check-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
  }

  .check-icon {
    width: 32px; height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .check-icon.danger { background: rgba(239,68,68,0.15); }
  .check-icon.warning { background: rgba(245,158,11,0.15); }
  .check-icon.ok { background: rgba(34,197,94,0.1); }

  .check-main { flex: 1; min-width: 0; }

  .check-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 6px;
  }

  .check-name {
    font-weight: 600;
    font-size: 15px;
    line-height: 1.3;
  }

  .fine-tag {
    font-family: 'Unbounded', sans-serif;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .fine-tag.danger { color: var(--danger); }
  .fine-tag.warning { color: var(--warn); }

  .check-desc {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 10px;
  }

  .check-rec {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13px;
    color: #a0a0b8;
    line-height: 1.5;
  }

  .check-rec::before {
    content: '→ ';
    color: var(--accent);
    font-weight: 700;
  }

 
  .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);
    }

  
  @media print {
    body { background: white !important; color: #111 !important; }
    body::before { display: none !important; }
    header, footer, #pdfBtn, .search-wrap, .hint, #loading, #error { display: none !important; }
    #results { display: block !important; margin-top: 0 !important; }
    .container { max-width: 100% !important; padding: 0 !important; }
    .summary-card { background: #fff !important; border: 2px solid #ccc !important; border-radius: 8px !important; }
    .summary-card.critical { border-color: #ef4444 !important; }
    .summary-card.high { border-color: #f97316 !important; }
    .summary-card.medium { border-color: #f59e0b !important; }
    .summary-card.low { border-color: #22c55e !important; }
    .risk-badge { background: #f0f0f0 !important; color: #333 !important; border-color: #ccc !important; }
    .risk-badge.critical { background: #fee2e2 !important; color: #dc2626 !important; }
    .risk-badge.high { background: #ffedd5 !important; color: #ea580c !important; }
    .risk-badge.medium { background: #fef9c3 !important; color: #ca8a04 !important; }
    .risk-badge.low { background: #dcfce7 !important; color: #16a34a !important; }
    .fine-amount { color: #dc2626 !important; }
    .fine-range, .fine-label, .domain-info, .checked-at { color: #555 !important; }
    .stat-pill { background: #f5f5f5 !important; border-color: #ddd !important; color: #333 !important; }
    .check-item { background: #fff !important; border-color: #ddd !important; border-radius: 6px !important; page-break-inside: avoid; }
    .check-item.danger { border-left-color: #ef4444 !important; }
    .check-item.warning { border-left-color: #f59e0b !important; }
    .check-item.ok { border-left-color: #22c55e !important; }
    .check-icon.danger { background: #fee2e2 !important; }
    .check-icon.warning { background: #fef3c7 !important; }
    .check-icon.ok { background: #dcfce7 !important; }
    .check-name { color: #111 !important; }
    .check-desc { color: #555 !important; }
    .check-rec { background: #f9f9f9 !important; border-color: #ddd !important; color: #444 !important; }
    .fine-tag.danger { color: #dc2626 !important; }
    .fine-tag.warning { color: #d97706 !important; }
    .checks-title { color: #666 !important; }
    details { display: none !important; }

    
    #pdf-header { display: block !important; }
  }

  #pdf-header {
    display: none;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #ef4444;
  }

  
  .pamyatka-block {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, rgba(255,60,60,0.08), rgba(255,122,60,0.05));
    border: 1px solid rgba(255,60,60,0.2);
    border-radius: 14px;
    padding: 16px 20px;
    margin-top: 20px;
    transition: border-color 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
  }

  .pamyatka-block:hover {
    border-color: rgba(255,60,60,0.45);
    box-shadow: 0 4px 24px rgba(255,60,60,0.1);
  }

  .pamyatka-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .pamyatka-text {
    flex: 1;
    min-width: 0;
  }

  .pamyatka-label {
    font-size: 11px;
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 3px;
  }

  .pamyatka-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text);
  }

  .pamyatka-sub {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
  }

  .pamyatka-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: white;
    font-family: 'Unbounded', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 10px 18px;
    border-radius: 8px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  @media (max-width: 600px) {
    .summary-top { flex-direction: column; }
    .fine-block { text-align: left; }
    .search-wrap { flex-wrap: wrap; padding: 12px; }
    #checkBtn { width: 100%; justify-content: center; }
    .pamyatka-block { flex-wrap: wrap; }
    .pamyatka-btn { width: 100%; justify-content: center; }
  }
  
  .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; }
  }
  @media print {
    .cookie-bar { display: none !important; }
  }
  
  .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; }

.check-item { animation-delay: var(--item-delay, 0s); }

.print-table { width: 100%; border-collapse: collapse; }
.print-td { vertical-align: middle; }
.print-td-right { text-align: right; vertical-align: middle; font-size: 12px; color: #444; line-height: 1.8; }
.print-brand { font-family: sans-serif; font-size: 22px; font-weight: 900; color: #ef4444; }
.print-tagline { font-size: 12px; color: #666; margin-top: 2px; }
.domain-title { margin-top: 12px; font-family: 'Unbounded', sans-serif; font-size: 20px; font-weight: 700; }
.pamyatka-results { margin-top: 24px; }
.pdf-btn-wrapper { text-align: center; margin: 32px 0 8px; }
.btn-download { background: linear-gradient(135deg, #ff3c3c, #ff7a3c); border: none; color: white; font-family: 'Unbounded', sans-serif; font-size: 14px; font-weight: 700; padding: 14px 36px; cursor: pointer; letter-spacing: 0.06em; text-transform: uppercase; transition: all 0.2s; }
.btn-download:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,60,60,0.35); }
.social-links { margin-top: 16px; display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.social-link { display: flex; align-items: center; gap: 8px; color: #a0a0b8; text-decoration: none; font-size: 13px; }
.social-link:hover { color: #e0e0f0; }
.disclaimer { margin-top: 12px; font-size: 11px; }
details { cursor: pointer; }
.ok-summary { color: var(--muted); font-size: 13px; padding: 10px 0; list-style: none; display: flex; align-items: center; gap: 10px; }
.ok-items { margin-top: 8px; }
.c-ok { color: var(--ok); }
