:root {
    --brand: #0057ff;
    --ink: #0f172a;
    --muted: #64748b;
    --surface: #ffffff;
    --surface-2: #f8fafc;
    --radius: 14px;
}

html, body {
    height: 100%;
}

body {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif;
    color: var(--ink);
    background: var(--surface);
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: .3px;
}

.hero {
    background: linear-gradient(90deg, rgba(0,87,255,.06), rgba(0,200,180,.06));
}

.card {
    border-radius: var(--radius);
}

.btn-primary {
    --bs-btn-bg: var(--brand);
    --bs-btn-border-color: var(--brand);
}

footer {
    color: var(--muted);
}

a.text-muted:hover {
    color: #0ea5e9 !important;
}

.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    background: var(--surface-2);
    border: 1px solid var(--muted);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.cookie-consent.hidden {
    display: none;
}

@media (max-width: 576px) {
    .cookie-consent {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
}
