:root {
    --bg-dark: #0a0a0c;
    --bg-panel: #131418;
    --bg-hover: #1d1f26;

    --border-color: rgba(255, 255, 255, 0.07);

    --accent-red: #da373c;
    --accent-dim: rgba(218, 55, 60, 0.15);

    --text-primary: #f1f1f3;
    --text-secondary: #9a9ba0;

    --success: #10b981;
    --danger: #ef4444;

    --font-ui: 'Inter', system-ui, -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--bg-dark);
    background-image: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(218, 55, 60, 0.06) 0%, transparent 60%);
    color: var(--text-primary);
    font-family: var(--font-ui);
    font-size: 14px;
    line-height: 1.45;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    position: relative;
}

h1,
h2,
h3,
h4 {
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* Removed global scanlines for a cleaner creator look */
body::after {
    display: none;
}

/* SLEEK CUSTOM SCROLLBARS */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-red);
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: var(--font-ui);
    cursor: pointer;
    border: none;
    outline: none;
}

/* Mobile Mechanics & Fixes */
@media (max-width: 768px) {

    input,
    textarea,
    select {
        /* Prevents iOS Auto Zooming */
        font-size: 16px !important;
    }
}