/* AEGIS-QUANTUM LLC | Black Box Style */
body {
    background-color: #0a0a0a;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    display: flex;
    justify-content: center; /* Forces the dashboard to center */
    align-items: flex-start;
    min-height: 100vh;
}

.black-box-container {
    width: 100%;
    max-width: 1000px; /* Snaps the content to a professional width */
    display: flex;
    flex-direction: row; /* Groups sidebar and main content side-by-side */
    border-left: 2px solid #d4af37;
    border-right: 2px solid #d4af37;
    background: rgba(18, 18, 18, 0.95);
    margin: 0 auto;
}



.main-logo {
    max-width: 300px;
    margin-bottom: 20px;
}

h1 { font-size: 2.5em; color: #d4af37; margin-bottom: 5px; }
.tagline { font-size: 1.2em; font-weight: bold; letter-spacing: 2px; }
.birthplace { color: #d4af37; font-style: italic; }

.gold-divider {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #d4af37, transparent);
    margin: 30px 0;
}

.mission-section {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.mission-block {
    flex: 1;
    text-align: left;
    font-size: 0.9em;
    line-height: 1.6;
}

.mission-block h2 { color: #d4af37; font-size: 1.1em; }

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #d4af37;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.cta-button:hover { background-color: #fff; box-shadow: 0 0 15px #d4af37; }
