
    :root { --primary: #2563eb; --primary-dark: #1d4ed8; --telegram: #229ED9; --telegram-dark: #1b7fb0; --text: #1e293b; --text-light: #64748b; --bg: #ffffff; --bg-alt: #f8fafc; --border: #e2e8f0; --success: #22c55e; }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif; line-height: 1.6; color: var(--text); background: var(--bg); }
    .container { max-width: 1100px; margin: 0 auto; padding: 0 1rem; }
    header { background: var(--bg); border-bottom: 1px solid var(--border); padding: 1rem 0; position: sticky; top: 0; z-index: 50; box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
    .header-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
    .logo { font-size: 1.25rem; font-weight: 700; color: var(--primary); text-decoration: none; }
    nav { display: flex; flex-wrap: wrap; gap: 0.5rem; }
    nav a { color: var(--text); text-decoration: none; padding: 0.5rem 0.75rem; border-radius: 6px; font-weight: 500; font-size: 0.9rem; }
    nav a:hover, nav a[aria-current="page"] { background: var(--bg-alt); color: var(--primary); }
    .telegram-btn { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--telegram); color: white; padding: 0.6rem 1.2rem; border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 0.9rem; transition: all 0.3s ease; box-shadow: 0 2px 4px rgba(34,158,217,0.3); }
    .telegram-btn:hover { background: var(--telegram-dark); transform: translateY(-2px); box-shadow: 0 4px 8px rgba(34,158,217,0.4); }
    .telegram-btn svg { width: 18px; height: 18px; fill: currentColor; }
    .breadcrumb { padding: 0.75rem 0; font-size: 0.875rem; color: var(--text-light); }
    .breadcrumb ol { display: flex; flex-wrap: wrap; gap: 0.25rem; list-style: none; }
    .breadcrumb a { color: var(--primary); text-decoration: none; }
    .hero { padding: 2rem 0; text-align: center; background: var(--bg-alt); border-radius: 12px; margin: 1.5rem 0; }
    .hero h1 { font-size: 1.75rem; margin-bottom: 0.5rem; color: var(--text); }
    .hero p { color: var(--text-light); max-width: 600px; margin: 0 auto; }
    .result-card { background: var(--bg); border: 2px solid var(--primary); border-radius: 12px; padding: 1.5rem; margin: 1.5rem 0; text-align: center; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }
    .result-label { font-size: 0.875rem; color: var(--text-light); margin-bottom: 0.5rem; }
    .result-date { font-size: 1rem; color: var(--text); margin-bottom: 1rem; }
    .result-number { font-size: 3rem; font-weight: 800; color: var(--primary); letter-spacing: 0.25rem; margin: 0.5rem 0; }
    .result-time { font-size: 0.875rem; color: var(--text-light); }
    .result-status { display: inline-flex; align-items: center; gap: 0.25rem; font-size: 0.875rem; color: var(--success); margin-top: 0.75rem; }
    .result-status::before { content: "●"; font-size: 0.6rem; }
    .section-title { font-size: 1.5rem; font-weight: 700; margin: 2rem 0 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--border); }
    .table-wrapper { overflow-x: auto; margin: 1rem 0; border-radius: 8px; border: 1px solid var(--border); }
    table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
    thead { background: var(--bg-alt); font-weight: 600; }
    th, td { padding: 0.75rem 1rem; text-align: left; border-bottom: 1px solid var(--border); }
    tbody tr:hover { background: var(--bg-alt); }
    .result-highlight { font-weight: 700; color: var(--primary); }
    .faq-item { margin: 1rem 0; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
    .faq-question { width: 100%; padding: 1rem; background: var(--bg-alt); border: none; text-align: left; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
    .faq-question::after { content: "▼"; font-size: 0.8rem; transition: transform 0.2s; }
    .faq-question[aria-expanded="true"]::after { transform: rotate(180deg); }
    .faq-answer { padding: 1rem; display: none; background: var(--bg); }
    .faq-answer.show { display: block; }
    .related-links { background: var(--bg-alt); border-radius: 8px; padding: 1.5rem; margin: 2rem 0; }
    .related-links h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }
    .related-links ul { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; }
    .related-links a { color: var(--primary); text-decoration: none; padding: 0.25rem 0.75rem; background: var(--bg); border-radius: 6px; font-size: 0.9rem; border: 1px solid var(--border); }
    .related-links a:hover { background: var(--primary); color: white; border-color: var(--primary); }
    footer { background: var(--bg-alt); padding: 2rem 0; margin-top: 3rem; border-top: 1px solid var(--border); font-size: 0.875rem; color: var(--text-light); text-align: center; }
    footer a { color: var(--primary); text-decoration: none; margin: 0 0.25rem; }
    .disclaimer { margin-top: 1rem; font-size: 0.75rem; color: var(--text-light); }
    @media (max-width: 768px) { .header-inner { flex-direction: column; align-items: flex-start; } nav { width: 100%; overflow-x: auto; padding-bottom: 0.5rem; } .telegram-btn { width: 100%; justify-content: center; margin-top: 0.5rem; } .hero h1 { font-size: 1.5rem; } .result-number { font-size: 2.5rem; } }
