/* ====== INSTALLER PAGE GLOBAL STYLES ====== */

:root {
    --bg: #0f172a;
    --card-bg: #020617;
    --accent: #38bdf8;
    --accent-soft: rgba(56,189,248,0.15);
    --text-main: #e5e7eb;
    --text-muted: #9ca3af;
}
* {
    box-sizing: border-box;
}
body {
    margin: 0;
    min-height: 100vh;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #1e293b 0, #020617 55%, #000 100%);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.card {
    width: 100%;
    max-width: 760px;
    background: linear-gradient(135deg, rgba(148,163,184,0.08), rgba(15,23,42,0.95));
    border-radius: 18px;
    border: 1px solid rgba(148,163,184,0.35);
    box-shadow: 0 24px 60px rgba(15,23,42,0.9);
    padding: 24px 24px 22px;
    backdrop-filter: blur(18px);
}
@media (min-width: 640px) {
    .card {
        padding: 28px 32px 26px;
    }
}
.header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.logo-dot {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 20%, #e0f2fe 0, #38bdf8 30%, #0ea5e9 55%, #0369a1 100%);
    box-shadow: 0 0 22px rgba(56,189,248,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #0b1120;
}
.title-text {
    display: flex;
    flex-direction: column;
}
.title-text h1 {
    margin: 0;
    font-size: 20px;
    letter-spacing: 0.01em;
}
.title-text span {
    font-size: 13px;
    color: var(--text-muted);
}
.detected {
    margin: 10px 0 4px;
    font-size: 14px;
    color: var(--text-muted);
}
.detected strong {
    color: var(--text-main);
}
.main-button {
    margin: 6px 0 14px;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    border: none;
    text-decoration: none;
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    color: #0b1120;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(8,47,73,0.7);
    white-space: nowrap;
}
.btn-primary span.icon {
    font-size: 16px;
}
.btn-row {
    margin-top: 4px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 13px;
    border-radius: 999px;
    border: 1px solid rgba(148,163,184,0.45);
    background: rgba(15,23,42,0.85);
    color: var(--text-main);
    text-decoration: none;
    font-size: 13px;
    cursor: pointer;
}
.btn-secondary span.icon {
    font-size: 15px;
}
.hint {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}
.sections {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid rgba(148,163,184,0.35);
    display: grid;
    gap: 14px;
}
.section-title {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
}
.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
}
.pill {
    font-size: 11px;
    padding: 3px 9px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: #bae6fd;
}
