* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #000 url('starfield.jpg') center top / cover no-repeat;
    background-attachment: fixed;
    color: white;
    min-height: 100vh;
}

/* HEADER */
.header {
    background: rgba(0, 0, 0, 0.6);
    padding: 18px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 4px solid #ff0044;
    flex-wrap: wrap;
    min-height: 180px;
}

.logo-img {
    max-height: 140px;
    width: auto;
    display: block;
}

.header-right {
    text-align: right;
}

.header-right .official {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}

.header-right .tagline {
    color: #ffd700;
    font-size: 16px;
    font-style: italic;
    margin-top: 4px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}

/* MAIN NAV */
.nav-main {
    background: linear-gradient(180deg, #d9002b 0%, #ff0044 50%, #c80022 100%);
    padding: 13px 25px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: bold;
    font-size: 17px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.6);
    flex-wrap: wrap;
}

.nav-link {
    color: white;
    text-decoration: none;
    padding: 8px 18px;
    transition: all 0.2s;
    letter-spacing: 1px;
}

.nav-link:hover {
    background: #ffff00;
    color: #000;
}


/* SUB NAV */
.sub-nav {
    background: #00ddff;
    color: #000;
    padding: 11px 25px;
    display: flex;
    gap: 28px;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
    border-bottom: 2px solid #000;
    flex-wrap: wrap;
}

.sub-nav a {
    color: #000;
    text-decoration: none;
}

.sub-nav a:hover {
    text-decoration: underline;
}

/* CONTENT WRAPPER */
.content {
    max-width: 1200px;
    margin: 25px auto;
    padding: 0 20px;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

/* FOOTER */
footer {
    background: rgba(0, 0, 0, 0.8);
    text-align: center;
    padding: 22px;
    border-top: 4px solid #ff0044;
    margin-top: 40px;
    font-size: 14px;
}

footer .tagline {
    margin-top: 6px;
    color: #00ddff;
    letter-spacing: 1px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    body {
        background-attachment: scroll;
    }
    .logo-img {
        max-height: 90px;
    }
    .header-right .official {
        font-size: 14px;
    }
    .header-right .tagline {
        font-size: 12px;
    }
    .nav-main {
        font-size: 14px;
        gap: 0;
    }
    .nav-link {
        padding: 6px 12px;
    }
    
}