
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", Arial, sans-serif;
    color: #d9d9d9; /* Silver text */
    line-height: 1.7;
    background: #000;
    background-image: 
        radial-gradient(circle at center, rgba(10, 20, 35, 0.55), rgba(0, 0, 0, 0.95)),
        url("/assets/bg-cosmic.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Soft blur mask overlay */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(2.5px);
    z-index: -1;
}

/* Vignette */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0,0,0,0) 40%, rgba(0,0,0,0.85) 100%);
    pointer-events: none;
    z-index: -1;
}

/* Header */
header {
    width: 100%;
    padding: 30px 40px;
    display: flex;
    justify-content: center;
}

header img {
    height: 300px;
    filter: drop-shadow(0 0 12px rgba(0, 128, 255, 0.4));
}

/* Navigation */
nav {
    text-align: center;
    padding: 10px 0 40px 0;
}

nav a {
    margin: 0 18px;
    color: #cccccc;
    text-decoration: none;
    font-size: 17px;
    letter-spacing: 1px;
    transition: 0.3s;
}

nav a:hover {
    color: #e8c547; /* Gold hover */
}

/* Titles */
h1, h2 {
    color: #e8c547; /* Gold */
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    text-align: center;
}

/* Paragraphs */
p {
    max-width: 850px;
    margin: 0 auto 25px auto;
    font-size: 18px;
}

/* Footer */
footer {
    margin-top: 80px;
    padding: 25px;
    text-align: center;
    font-size: 13px;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 600px) {
    header img {
        height: 80px;
    }

    nav a {
        margin: 0 10px;
        font-size: 15px;
    }

    p {
        padding: 0 20px;
    }
}

/* =========================================
   CENTERED & STACKED LOGO SYSTEM
   ========================================= */

/* 1. Force the header to center everything inside it */
.centered-header {
    display: flex;
    justify-content: center; /* Pushes the logo container to the middle of the page */
    align-items: center;
    width: 100%;
    margin-bottom: 40px;
}

/* 2. Stack the icons and center them over each other */
.stacked-logo {
    display: flex;
    flex-direction: column;  
    align-items: center;     /* Centers the top icon directly over the bottom text */
    gap: 0;                  
}

/* 3. The Emblem (Top) */
.logo-image {
    height: 80px; 
    width: auto;
    position: relative;
    z-index: 2;
    /* If there is still a massive gap because of the transparent canvas, 
       increase this negative number (e.g., -50px, -100px) until they touch */
    margin-bottom: -20px; 
}

/* 4. The Wordmark (Bottom / Huge Text) */
.logo-text {
    height: 140px; /* Making it massive */
    width: auto;
    max-width: 100vw; 
    position: relative;
    z-index: 1;
}