:root {
    --bg: #000000;
    --panel: rgba(10, 10, 10, 0.75);
    --panel2: rgba(10, 10, 10, 0.55);
    --border: rgba(0, 255, 102, 0.35);
    --accent: #00ff66;
    --text: #f5f5f5;
    --muted: rgba(245, 245, 245, 0.7);
    --shadow: 0 12px 40px rgba(0, 0, 0, 0.65);
    --radius: 14px;
}
html,body {
    height: 100%;
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    /*overflow: hidden;*/
}

.btn-insight {
    background: var(--accent);
    color: #06110a;
    border: none;
    font-weight: 900;
    padding: 10px 12px;
    border-radius: 10px;
    transition: transform 0.08s ease, background-color 0.15s ease;
    width: 100%;
}

.btn-insight:hover {
    background: #00e85d;
}

.btn-insight:active {
    transform: translateY(1px);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-weight: 800;
    padding: 10px 12px;
    border-radius: 10px;
    line-height: 1;
    cursor: pointer;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.09);
}

.btn-plus {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 900;
    padding: 0;
}