:root {
    --obsidian-black: #050608;
    --director-red: #FF1744;
    --streaming-blue: #00E5FF;
    --integrity-green: #00E676;
    --text-white: #f8f9fa;
    --neon-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
    --red-shadow: 0 0 10px rgba(255, 23, 68, 0.5);
}

body {
    background-color: var(--obsidian-black);
    color: var(--text-white);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.text-neon-blue { color: var(--streaming-blue); text-shadow: var(--neon-shadow); }
.text-neon-red { color: var(--director-red); text-shadow: var(--red-shadow); }
.text-neon-green { color: var(--integrity-green); }

.navbar {
    background: rgba(5, 6, 8, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-weight: 900;
    color: var(--text-white) !important;
    letter-spacing: 3px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.8rem;
    text-transform: uppercase;
    transition: 0.3s;
}

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

.btn-neon-red {
    background: transparent;
    border: 1px solid var(--director-red);
    color: var(--director-red);
    transition: 0.3s;
    text-transform: uppercase;
    font-weight: bold;
}

.btn-neon-red:hover {
    background: var(--director-red);
    color: white;
    box-shadow: var(--red-shadow);
}

.card-dark {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    transition: 0.3s;
}

.card-dark:hover {
    border-color: var(--streaming-blue);
    background: rgba(255, 255, 255, 0.05);
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

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

footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px 0;
    font-size: 0.8rem;
}
