:root { color-scheme: dark; --bg: #07111f; --line: #263b52; --text: #f4f8fc; --muted: #8fa3b8; --accent: #51d6a4; --danger: #ff7d8f; }
* { box-sizing: border-box; } html, body { min-height: 100%; margin: 0; } body { color: var(--text); background: radial-gradient(circle at 50% -15%, #173657 0, transparent 48%), var(--bg); font: 16px/1.45 system-ui, -apple-system, "Segoe UI", sans-serif; }
.page-shell { min-height: 100dvh; display: grid; place-items: center; padding: 28px 18px 20px; } .check-card { width: min(560px, 100%); padding: clamp(26px, 6vw, 48px); border: 1px solid rgba(120,163,207,.2); border-radius: 28px; background: linear-gradient(155deg, rgba(24,45,68,.96), rgba(11,23,38,.98)); box-shadow: 0 28px 80px rgba(0,0,0,.34); }
.eyebrow { display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .16em; } .status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 5px rgba(81,214,164,.12); } h1 { margin: 18px 0 10px; font-size: clamp(30px, 7vw, 46px); line-height: 1.05; letter-spacing: -.04em; } .intro { max-width: 38ch; margin: 0 0 28px; color: var(--muted); }
.ip-panel { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin: 0 0 18px; padding: 13px 16px; border: 1px solid var(--line); border-radius: 15px; background: rgba(8,18,31,.5); } .ip-label { color: var(--muted); font-size: 13px; } .ip-panel strong { font-size: 18px; letter-spacing: .03em; }
.run-button { display: flex; align-items: center; justify-content: center; gap: 12px; width: 100%; min-height: 62px; padding: 14px 20px; border: 0; border-radius: 16px; color: #06151b; background: var(--accent); font: inherit; font-weight: 800; cursor: pointer; transition: transform .2s, filter .2s; } .run-button:hover { filter: brightness(1.07); transform: translateY(-1px); } .run-button:disabled { cursor: wait; opacity: .65; transform: none; } .button-icon { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: rgba(0,0,0,.12); font-size: 21px; }
.hint { min-height: 22px; margin: 12px 0 0; color: var(--muted); text-align: center; font-size: 13px; } .results { margin-top: 26px; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: rgba(7,17,31,.46); } .results-head { display: flex; justify-content: space-between; padding: 14px 16px; color: var(--muted); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; } .target-list { border-top: 1px solid var(--line); } .target { display: flex; align-items: center; justify-content: space-between; padding: 13px 16px; border-bottom: 1px solid rgba(38,59,82,.65); } .target:last-child { border-bottom: 0; } .target-name { font-weight: 650; } .target-meta { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 12px; } .target-state { display: inline-flex; align-items: center; gap: 6px; } .target-state::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--danger); } .target.ok .target-state { color: var(--accent); } .target.ok .target-state::before { background: var(--accent); } .verdict { margin: 14px; padding: 16px; border-radius: 14px; color: #d9fff0; background: rgba(45,167,124,.16); font-size: 17px; font-weight: 750; text-align: center; } .verdict.neutral { color: #dbe7ff; background: rgba(91,140,255,.15); } .verdict.warn { color: #ffe5bb; background: rgba(225,151,54,.16); } footer { align-self: end; margin-top: 18px; color: #5f748a; font-size: 12px; } @media (max-width: 480px) { .page-shell { padding: 14px; } .check-card { border-radius: 22px; } .target { padding: 12px; } .target-meta { gap: 7px; } }
/* Round launcher and visual service status */
.check-card { text-align: center; }
.eyebrow, .intro, .ip-panel, .results { text-align: left; }
.run-button { width: 176px; height: 176px; min-height: 176px; margin: 10px auto 0; border-radius: 50%; flex-direction: column; gap: 9px; box-shadow: 0 0 0 10px rgba(81,214,164,.08), 0 18px 38px rgba(0,0,0,.28); }
.run-button .button-icon { width: 38px; height: 38px; font-size: 26px; }
.run-button span:last-child { font-size: 17px; }
.hint { text-align: center; }
.target-list { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; padding: 16px; border-top: 1px solid var(--line); }
.target { display: flex; flex-direction: column; justify-content: center; gap: 9px; min-width: 0; padding: 14px 8px; border: 0; border-radius: 16px; background: rgba(18,36,55,.72); }
.target-logo { display: grid; place-items: center; width: 64px; height: 64px; margin: 0 auto; overflow: hidden; border: 3px solid var(--danger); border-radius: 50%; background: #fff; box-shadow: 0 0 0 4px rgba(255,125,143,.1); }
.target.ok .target-logo { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(81,214,164,.12); }
.target-logo img { width: 72%; height: 72%; object-fit: contain; }
.target-fallback { color: #17283a; font-size: 18px; font-weight: 850; }
.target-name { overflow: hidden; width: 100%; text-align: center; text-overflow: ellipsis; font-size: 13px; }
.target-meta { display: flex; flex-direction: column; gap: 2px; font-size: 11px; text-align: center; }
.target-state { justify-content: center; }
@media (max-width: 560px) { .target-list { gap: 7px; padding: 12px; } .target { padding: 11px 4px; } .target-logo { width: 56px; height: 56px; } .target-name { font-size: 12px; } .target-meta { font-size: 10px; } }
@media (max-width: 380px) { .target-list { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.save-button { display: block; margin: 14px auto 0; padding: 10px 16px; border: 1px solid rgba(143,163,184,.45); border-radius: 999px; color: var(--muted); background: transparent; font: inherit; font-size: 13px; cursor: pointer; transition: color .2s, border-color .2s, background .2s; }
.save-button:hover { color: var(--text); border-color: var(--accent); background: rgba(81,214,164,.08); }
.save-button.saved { color: var(--accent); border-color: var(--accent); }
.seo-copy { width: min(760px, 100%); margin-top: 22px; padding: 22px 24px; border: 1px solid rgba(120,163,207,.16); border-radius: 20px; color: var(--muted); background: rgba(11,23,38,.72); text-align: left; }
.seo-copy h2 { margin: 0 0 8px; color: var(--text); font-size: 18px; } .seo-copy h2:not(:first-child) { margin-top: 18px; } .seo-copy p { margin: 0; font-size: 14px; } .seo-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; } .seo-tags span { padding: 5px 9px; border-radius: 999px; color: #b8c9d9; background: rgba(91,140,255,.12); font-size: 11px; }
