*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; background: #0d1117; color: #c9d1d9; line-height: 1.6; min-height: 100vh; }
.container { max-width: 900px; margin: 0 auto; padding: 0 24px; }
header { display: flex; justify-content: space-between; align-items: center; padding: 32px 0; border-bottom: 1px solid #21262d; }
.logo { font-size: 20px; font-weight: 700; color: #58a6ff; }
nav { display: flex; gap: 24px; flex-wrap: wrap; }
nav a { color: #8b949e; text-decoration: none; font-size: 14px; white-space: nowrap; }
nav a:hover { color: #c9d1d9; }
.hero { padding: 80px 0 48px; text-align: center; }
.hero h1 { font-size: 36px; color: #f0f6fc; margin-bottom: 16px; }
.hero p { font-size: 16px; color: #8b949e; max-width: 600px; margin: 0 auto; }
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 0 0 48px; }
.card { background: #161b22; border: 1px solid #21262d; border-radius: 6px; padding: 24px; }
.card h3 { color: #f0f6fc; font-size: 16px; margin-bottom: 8px; }
.card p { color: #8b949e; font-size: 14px; }
.links { text-align: center; padding: 24px 0 48px; color: #8b949e; font-size: 14px; }
.links a { color: #58a6ff; text-decoration: none; }
.links a:hover { text-decoration: underline; }
.sep { margin: 0 12px; }
footer { text-align: center; padding: 48px 0; border-top: 1px solid #21262d; }
footer p { font-size: 13px; color: #484f58; margin-bottom: 4px; }
.muted { font-size: 12px; color: #30363d; }
.pricing-table { width: 100%; border-collapse: collapse; margin: 32px 0; overflow-x: auto; display: block; }
.pricing-table th, .pricing-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid #21262d; font-size: 14px; white-space: nowrap; }
.pricing-table th { color: #f0f6fc; font-weight: 600; background: #161b22; }
.pricing-table td { color: #8b949e; }
.content { padding: 48px 0; }
.content h2 { color: #f0f6fc; font-size: 24px; margin-bottom: 24px; }
.content p, .content li { color: #8b949e; font-size: 14px; margin-bottom: 12px; }
.content a { color: #58a6ff; text-decoration: none; }
.content a:hover { text-decoration: underline; }
.content code { color: #79c0ff; font-size: 13px; background: #161b22; padding: 2px 6px; border-radius: 3px; word-break: break-all; }
.status-dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; background: #3fb950; margin-right: 8px; }
.status-row { padding: 12px 0; border-bottom: 1px solid #21262d; font-size: 14px; }
.status-row .uptime { float: right; color: #3fb950; }
.dl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.dl-item { text-align: center; padding: 16px; background: #0d1117; border-radius: 6px; }
.dl-item p { margin-bottom: 8px; }
.dl-item a { color: #58a6ff; font-size: 13px; }
.dl-item .size { color: #484f58; font-size: 11px; margin-top: 6px; }
@media (max-width: 700px) {
    .features { grid-template-columns: 1fr; }
    .dl-grid { grid-template-columns: 1fr; }
    nav { gap: 12px; }
    nav a { font-size: 12px; }
    .hero { padding: 48px 0 32px; }
    .hero h1 { font-size: 24px; }
    .hero p { font-size: 14px; }
    .container { padding: 0 16px; }
    .pricing-table { font-size: 12px; }
    .pricing-table th, .pricing-table td { padding: 10px 8px; font-size: 12px; }
}