:root {
    --ct-bg-0: #101112;
    --ct-bg-1: #16181a;
    --ct-bg-2: #1d2024;
    --ct-surface: #21252a;
    --ct-surface-2: #2a3036;
    --ct-border: #3a414a;
    --ct-text: #f3f6fa;
    --ct-text-muted: #b6c0ca;
    --ct-primary: #1ca86a;
    --ct-primary-strong: #0e8f58;
    --ct-success: #1dbf73;
    --ct-warning: #f59d2a;
    --ct-danger: #e04f5f;
    --ct-info: #4ea3ff;
    --ct-radius-sm: 6px;
    --ct-radius-md: 10px;
    --ct-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
    --ct-shadow-md: 0 8px 24px rgba(0, 0, 0, 0.35);
    --ct-focus-ring: 0 0 0 3px rgba(78, 163, 255, 0.35);
    --ct-space-1: 4px;
    --ct-space-2: 8px;
    --ct-space-3: 12px;
    --ct-space-4: 16px;
    --ct-space-5: 24px;
    --ct-space-6: 32px;
    --ct-type-h1: clamp(1.7rem, 1.35rem + 0.9vw, 2.2rem);
    --ct-type-h2: clamp(1.4rem, 1.2rem + 0.55vw, 1.8rem);
    --ct-type-h3: clamp(1.2rem, 1.07rem + 0.35vw, 1.45rem);
    --ct-type-h4: 1.08rem;
    --ct-type-h5: 1rem;
}

html,
body {
    background: var(--ct-bg-0);
    color: var(--ct-text);
}

body {
    --bs-body-bg: var(--ct-bg-0);
    --bs-body-color: var(--ct-text);
    --bs-heading-color: var(--ct-text);
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    line-height: 1.5;
}

a {
    color: var(--ct-info);
}

a:hover {
    color: #79bdff;
}

:focus-visible {
    outline: none;
    box-shadow: var(--ct-focus-ring);
    border-radius: var(--ct-radius-sm);
}

.text-secondary {
    color: var(--ct-text-muted) !important;
}

.linebreak {
    width: 100%;
    border-bottom: 1px solid var(--ct-border);
    margin: 10px 0;
    height: 1px;
}
