@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Lexend:wght@400;500;600;700&display=swap');

:root {
    --color-petroleum: #0D2B2C;
    --color-petroleum-light: #164042;
    --color-mint: #6FFCDB;
    --color-mint-dim: #4BC6AA;
    --color-white: #F1F5F9;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--color-petroleum);
    color: var(--color-white);
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
.font-display {
    font-family: 'Lexend', sans-serif;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--color-petroleum);
}

::-webkit-scrollbar-thumb {
    background: var(--color-petroleum-light);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-mint-dim);
}

/* Compact Utilities */
.compact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.2s ease-out;
}

.compact-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(111, 252, 219, 0.3);
    transform: translateY(-1px);
}

.text-shadow-sm {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}