/* Modern Web Standartları (Baseline) ve Projeye Özel CSS */

@layer base {
    :root {
        --taxi-yellow: #facc15;
        --taxi-black: #09090b;
    }

    body {
        font-family: 'Inter', system-ui, -apple-system, sans-serif;
        background-color: var(--taxi-black);
        color: white;
        scroll-behavior: smooth;
    }
}

/* Texture effect for background */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("https://www.transparenttextures.com/patterns/dark-leather.png");
    opacity: 0.03;
    pointer-events: none;
    z-index: 100;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #09090b;
}

::-webkit-scrollbar-thumb {
    background: #facc15;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #eab308;
}
