:root {
    --abyss-black: #020405;
    --liquid-gold: #D4AF37;
    --property-platinum: #E2E8F0;
    --liquidation-red: #FF453A;
    --text-muted: #888;
}

body {
    background-color: var(--abyss-black);
    color: var(--property-platinum);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--liquid-gold);
    font-weight: 700;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.mono-font {
    font-family: 'JetBrains Mono', 'Courier New', monospace;
}

/* Navbar */
.navbar {
    background-color: rgba(2, 4, 5, 0.95);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 900;
    color: var(--liquid-gold) !important;
    font-size: 1.2rem;
    line-height: 1.2;
}

.nav-link {
    color: var(--property-platinum) !important;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--liquid-gold) !important;
}

/* Hero Section */
.hero-section {
    padding: 100px 0;
    position: relative;
    border-bottom: 1px solid rgba(226, 232, 240, 0.1);
}

.hero-stats {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 2rem;
    margin-top: 3rem;
}

.stat-item {
    border-right: 1px solid rgba(212, 175, 55, 0.2);
}

.stat-item:last-child {
    border-right: none;
}

/* Cards & Components */
.card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(226, 232, 240, 0.1);
    border-radius: 0;
    transition: all 0.3s ease;
}

.card:hover {
    border-color: var(--liquid-gold);
    background: rgba(212, 175, 55, 0.03);
}

.btn-gold {
    background-color: var(--liquid-gold);
    color: var(--abyss-black);
    font-weight: 700;
    border-radius: 0;
    padding: 0.8rem 2rem;
    text-transform: uppercase;
    border: none;
}

.btn-gold:hover {
    background-color: #b8962e;
    color: var(--abyss-black);
}

.btn-outline-gold {
    border: 1px solid var(--liquid-gold);
    color: var(--liquid-gold);
    border-radius: 0;
    padding: 0.8rem 2rem;
    text-transform: uppercase;
    background: transparent;
}

.btn-outline-gold:hover {
    background: var(--liquid-gold);
    color: var(--abyss-black);
}

/* Footer */
footer {
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    margin-top: 5rem;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--liquid-gold);
    margin-bottom: 1.5rem;
}

/* Utils */
.text-gold { color: var(--liquid-gold) !important; }
.bg-abyss { background-color: var(--abyss-black) !important; }
.border-gold { border-color: var(--liquid-gold) !important; }
.border-red { border-color: var(--liquidation-red) !important; }

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}
