:root { --bg: #000; --card: #0a0a0a; --accent: #fff; --text: #eee; }
body { background: var(--bg); color: var(--text); font-family: 'Inter', sans-serif; display: flex; flex-direction: column; align-items: center; padding: 40px 20px; margin: 0; }

.header-section { text-align: center; margin-bottom: 40px; }
.logo-img { width: 50px; height: 50px; margin-bottom: 10px; }
.brand-name { font-size: 2.2rem; font-weight: 600; margin: 0; letter-spacing: -1px; }
.tagline { color: #555; font-size: 0.9rem; margin-top: 5px; }

.card { background: var(--card); border: 1px solid #1a1a1a; border-radius: 24px; padding: 24px; width: 100%; max-width: 400px; box-sizing: border-box; }
input { width: 100%; padding: 16px; background: #111; border: 1px solid #222; border-radius: 12px; color: #fff; font-size: 1rem; margin-bottom: 12px; box-sizing: border-box; }
input:focus { border-color: #444; outline: none; }

.btn-main { width: 100%; padding: 16px; background: #fff; color: #000; border: none; border-radius: 12px; font-weight: 600; font-size: 1rem; cursor: pointer; transition: 0.2s; }
.btn-main:hover { opacity: 0.9; transform: translateY(-1px); }

.result-area { margin-top: 24px; border-top: 1px solid #1a1a1a; padding-top: 20px; }
.score-container { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.label { font-size: 0.7rem; color: #555; letter-spacing: 1px; font-weight: 700; }
.score-num { font-size: 1.2rem; font-weight: 600; color: #fff; }
.verdict-text { font-size: 0.85rem; color: #888; line-height: 1.5; }

.vigilis-shield { background: #000; border: 1px solid #1a1a1a; padding: 12px; border-radius: 12px; margin-top: 15px; }
.shield-title { font-size: 0.6rem; font-weight: 700; color: #444; display: block; }
.shield-status { font-size: 0.75rem; color: #ffaa00; margin-top: 4px; display: block; }
