:root { --blue: #1565C0; --blue-dark: #0D47A1; --teal: #00695C; --ink: #212121; --muted: #616161; --bg: #FAFAFA; --card: #FFFFFF; --line: #E0E0E0; }
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--ink); font: 19px/1.65 system-ui, -apple-system, "Segoe UI", Roboto, sans-serif; }
a { color: var(--blue); }
header.top { background: var(--card); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 5; }
header.top .in { max-width: 960px; margin: 0 auto; padding: 12px 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.brand { font-weight: 800; letter-spacing: 3px; color: var(--blue); text-decoration: none; font-size: 22px; }
nav.main a { margin-left: 18px; text-decoration: none; font-weight: 600; color: var(--ink); }
nav.main a:hover { color: var(--blue); }
main { max-width: 960px; margin: 0 auto; padding: 28px 20px 64px; }
h1 { font-size: 40px; line-height: 1.15; margin: 8px 0 12px; color: var(--blue); }
h2 { font-size: 28px; line-height: 1.25; margin: 44px 0 10px; }
h3 { font-size: 22px; margin: 24px 0 6px; }
p, li { font-size: 19px; }
li { margin-bottom: 8px; }
.lead { font-size: 22px; color: var(--muted); }
.hero { display: grid; grid-template-columns: 1.2fr 1fr; gap: 28px; align-items: center; }
@media (max-width: 760px) { .hero { grid-template-columns: 1fr; } h1 { font-size: 34px; } }
.btn { display: inline-block; background: var(--blue); color: #fff; text-decoration: none; font-weight: 700; font-size: 22px; padding: 18px 28px; border-radius: 14px; margin: 8px 10px 8px 0; }
.btn:hover { background: var(--blue-dark); }
.btn.alt { background: var(--teal); }
.btn.ghost { background: transparent; color: var(--blue); border: 3px solid var(--blue); }
.card { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 20px 22px; }
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 760px) { .grid3 { grid-template-columns: 1fr; } }
.grid3 .card h3 { margin-top: 0; }
.ticket { border-collapse: collapse; margin: 12px auto; }
.ticket td { border: 2px solid #9E9E9E; width: 46px; height: 46px; text-align: center; font-weight: 700; font-size: 20px; background: #fff; }
.ticket td.blank { background: #E0E0E0; }
.ticket td.hit { background: #C8E6C9; }
.steps { counter-reset: s; list-style: none; padding: 0; }
.steps li { counter-increment: s; position: relative; padding-left: 56px; margin-bottom: 16px; }
.steps li::before { content: counter(s); position: absolute; left: 0; top: 0; width: 40px; height: 40px; border-radius: 50%; background: var(--blue); color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.faq details { border-bottom: 1px solid var(--line); padding: 10px 0; }
.faq summary { font-weight: 700; cursor: pointer; font-size: 20px; }
.faq details p { margin: 8px 0 4px; }
.ad { margin: 36px 0; text-align: center; min-height: 100px; }
footer { border-top: 1px solid var(--line); color: var(--muted); font-size: 16px; }
footer .in { max-width: 960px; margin: 0 auto; padding: 24px 20px; display: flex; flex-wrap: wrap; gap: 8px 22px; }
footer a { color: var(--blue); text-decoration: none; }
.updated { color: var(--muted); font-size: 16px; }
