:root {
    /* Colors */
    --bg-color: #05050A; /* Very dark blue/black */
    --card-bg: #0F111A;
    --primary: #3B82F6; /* Blue 500 */
    --primary-glow: #3B82F680;
    --secondary: #8B5CF6; /* Violet 500 */
    --accent: #10B981; /* Emerald 500 */
    --text-main: #F3F4F6;
    --text-muted: #9CA3AF;
    --border: #1F2937;

    /* Fonts */
    --font-sans: 'Outfit', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

button {
    font-family: inherit;
    cursor: pointer;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }

.text-primary { color: var(--primary); }
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-4xl { font-size: 2.25rem; }
.font-bold { font-weight: 700; }
.font-mono { font-family: var(--font-mono); }

.opacity-70 { opacity: 0.7; }
