@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
    --bg-main: #000000;
    --bg-card: #09090b;
    --border-dim: #18181b;
    --text-primary: #ffffff;
    --text-secondary: #71717a;
    --accent: #ffffff;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-primary);
    margin: 0;
    padding: 0;
    letter-spacing: -0.02em;
    -webkit-font-smoothing: antialiased;
}

.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-radius: 0;
    /* Minimalist fashion look */
}

.hover-lift {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hover-lift:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.gradient-text {
    color: var(--text-primary);
    background: none;
    -webkit-text-fill-color: initial;
    font-weight: 800;
    font-style: italic;
    letter-spacing: -0.05em;
    text-transform: uppercase;
}

.input-field {
    width: 100%;
    padding: 12px 16px;
    border-radius: 4px;
    border: 1px solid #27272a;
    background: #09090b !important;
    color: white !important;
    transition: all 0.2s;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    font-family: 'Inter', sans-serif;
}

.input-field:focus {
    outline: none;
    border-color: #ffffff;
    background: #000000 !important;
}

.input-field option {
    background: #000;
    color: white;
}

.btn-primary {
    background: white;
    color: black;
    font-weight: 900;
    padding: 1rem 2rem;
    border-radius: 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    border: 1px solid white;
}

.btn-primary:hover {
    background: transparent;
    color: white;
    transform: scale(1.02);
}

.btn-secondary {
    background: transparent;
    color: white;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 0;
    transition: all 0.3s ease;
    border: 1px solid var(--border-dim);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
}

.btn-secondary:hover {
    background: white;
    color: black;
    border-color: white;
}

.animate-fade-in {
    animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom Scrollbar - Ultra Minimalist */
::-webkit-scrollbar {
    width: 2px;
    height: 2px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: #18181b;
}

::-webkit-scrollbar-thumb:hover {
    background: #3f3f46;
}

/* Stats Grids - Monochromatic */
.stat-card {
    border: 1px solid var(--border-dim);
    padding: 24px;
    position: relative;
    overflow: hidden;
    background: #000;
    transition: all 0.3s;
}

.stat-card:hover {
    border-color: #3f3f46;
}

.stat-label {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 10px;
    color: var(--text-secondary);
    font-weight: 800;
    margin-bottom: 8px;
    display: block;
}

.stat-value {
    font-size: 32px;
    font-weight: 200;
    color: #fff;
    letter-spacing: -0.05em;
}

.stat-trend {
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}