@import "tailwindcss";

@theme {
    --color-velocita-black: #0a0a0a;
    --color-velocita-dark: #111111;
    --color-velocita-card: #161616;
    --color-velocita-border: #1f1f1f;
    --color-velocita-silver: #a8a8a8;
    --color-velocita-white: #f0f0f0;
    --color-velocita-red: #dc2626;
    --color-velocita-red-glow: #ef4444;

    --font-display: "Bebas Neue", "Arial Narrow", sans-serif;
    --font-body: "Inter", system-ui, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: #0a0a0a;
    color: #f0f0f0;
    font-family: var(--font-body);
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #dc2626;
    border-radius: 2px;
}

::selection {
    background: #dc2626;
    color: #fff;
}
