:root {
    --bg-dark: #0D0D0D;
    --cobalt-blue: #0047AB;
    --electric-lime: #CCFF00;
    --text-white: #FFFFFF;
    --text-slate: #888888;
    --font-sans: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-sans);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Canvas Background */
#engine-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.6;
}

/* Foreground Content */
.terminal-container {
    position: relative;
    z-index: 1;
    background: rgba(13, 13, 13, 0.85);
    border: 1px solid rgba(204, 255, 0, 0.2);
    padding: 3rem;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 40px rgba(0, 71, 171, 0.15);
}

/* Status Indicator */
.status-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--electric-lime);
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.status-pulse {
    width: 8px;
    height: 8px;
    background-color: var(--electric-lime);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--electric-lime);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(204, 255, 0, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(204, 255, 0, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(204, 255, 0, 0); }
}

/* Typography */
.brand-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -2px;
}

.gradient-text {
    display: block;
    background: linear-gradient(90deg, var(--cobalt-blue) 0%, var(--electric-lime) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.manifesto {
    font-size: 1.1rem;
    color: var(--text-slate);
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* Buttons */
.command-prompts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    padding: 1rem 1.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: var(--font-mono);
}

.btn-title {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.btn-url {
    font-size: 0.8rem;
    opacity: 0.7;
}

.btn-primary {
    background: transparent;
    border: 1px solid var(--electric-lime);
    color: var(--electric-lime);
}

.btn-primary:hover {
    background: rgba(204, 255, 0, 0.1);
    box-shadow: 0 0 20px rgba(204, 255, 0, 0.2);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--cobalt-blue);
    color: var(--text-white);
}

.btn-secondary:hover {
    background: rgba(0, 71, 171, 0.1);
    box-shadow: 0 0 20px rgba(0, 71, 171, 0.3);
    border-color: #3377FF; /* Slightly brighter blue on hover */
    transform: translateY(-2px);
}

/* Brand Logo Styling */
.logo-wrapper {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
}

.brand-logo {
    width: 80px; /* Keeps the logo sleek and institutional */
    height: auto;
    display: block;
    /* This adds a subtle glow that matches the 'Dark Mode' terminal vibe */
    filter: drop-shadow(0 0 12px rgba(0, 71, 171, 0.4));
    transition: transform 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.05); /* Slight prestige hover effect */
}

/* Responsive */
@media (max-width: 600px) {
    .brand-title { font-size: 3rem; }
    .terminal-container { padding: 2rem; width: 95%; }
}

