* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><circle cx="16" cy="16" r="8" fill="none" stroke="white" stroke-width="1.5"/><circle cx="16" cy="16" r="2" fill="%23aaa"/><line x1="16" y1="4" x2="16" y2="12" stroke="%23aaa" stroke-width="1.5"/><line x1="16" y1="20" x2="16" y2="28" stroke="%23aaa" stroke-width="1.5"/><line x1="4" y1="16" x2="12" y2="16" stroke="%23aaa" stroke-width="1.5"/><line x1="20" y1="16" x2="28" y2="16" stroke="%23aaa" stroke-width="1.5"/></svg>') 16 16, crosshair;
    margin: 0;
    font-family: 'Share Tech Mono', monospace;
    background-color: #0b0b0b;
    color: #fff;
}

.sticky-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 0 100px #000, 0 0 30px rgba(17, 18, 17, 0.729);
}

.navbar-military {
    background-color: #0b0b0be9;
    display: flex;
    align-items: center;
    gap: 50px;
    padding-bottom: 1.5rem;
    padding-top: 1.5rem;
    justify-content: center;
    border-bottom: 2px solid #f1eeee8c;
    box-shadow: 0 0 10px #000, 0 0 60px rgba(0, 0, 0, 0.663);
    margin: auto;
    width: 100%;
}

.nav-left {
    display: flex;
    gap: 2rem;
    flex: 1;
    justify-content: flex-end;
}

/* Right side nav items */
.nav-right {
    display: flex;
    gap: 2rem;
    flex: 1;
    justify-content: flex-start;
}

/* Logo centered */
.logo-box {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    text-decoration: none;
    flex-shrink: 0;
    flex-direction: column;
}

.nav-links li {
    position: relative;
}

.nav-left a,
.nav-right a {
    text-decoration: none;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1rem;
    font-family: "Orbitron", sans-serif;
    position: relative;
    display: inline-block;
    overflow: hidden;
    background-color: transparent;
    transition: color 0.3s ease;
}

.logo-image2 {
    width: 60px;
    height: auto;
}

.logo-text {
    color: #ffffff;
    font-family: "Orbitron", sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
}

.nav-left a::after,
.nav-right a::after {
    content: attr(data-full);
    position: absolute;
    left: 0;
    top: 0;
    color: #ffffff;
    width: 0;
    white-space: nowrap;
    overflow: hidden;
    transition: width 0.5s steps(10, end);
}

.nav-left a:hover::after,
.nav-right a:hover::after {
    width: 100%;
}

.nav-left a:hover,
.nav-right a:hover {
    color: transparent;
}

/* Mobile Navigation */
.mobile-nav-header {
    display: none;
    justify-content: space-between;
    align-items: center;
    background-color: #0d0d0d;
    padding: 1rem;
    border-top: 1px solid #3b3a3a;
    border-bottom: 1px solid #e4dfdf;
    box-shadow: 0 0 10px #000, 0 0 30px rgba(0, 255, 128, 0.05);
    top: 0;
    z-index: 1000;
}

.mobile-logo {
    width: 50px;
    height: auto;
}

.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #e5edea;
    margin: 3px 0;
    transition: 0.3s;
    box-shadow: 0 0 5px rgba(0, 255, 174, 0.3);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* UPDATED: Mobile menu with dividers */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 65vh;
    max-height: 500px;
    background-color: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1001;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
}

/* Mobile menu header */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0d0d0d;
    padding: 1rem;
    border-bottom: 1px solid #3b3a3a;
    position: sticky;
    top: 0;
    min-height: 70px;
    flex-shrink: 0;
}

/* Mobile nav links with dividers */
.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height: 100%;
    position: relative;
}

.mobile-nav-links li {
    margin: 0;
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
}

/* Short line divider between links */
.mobile-nav-links li:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 1px;
    background-color: #ffffff33;
}

.mobile-nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.1rem;
    font-family: "Urbanist", sans-serif;
    transition: color 0.3s ease;
    display: block;
    padding: 0.8rem 1.2rem;
    border: 1px solid transparent;
    border-radius: 8px;
    width: 100%;
    text-align: center;
}

.mobile-nav-links a:hover {
    color: #ffffff;
    border-color: #ffffff;
    box-shadow: 0 0 15px rgba(0, 255, 174, 0.2);
}

/* Full width divider at the end of menu */
.mobile-nav-links::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #ffffff8c;
}

/* Mobile Menu Close Button Styles */
.mobile-menu-close {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    /* padding: 0.5rem; */
    position: relative;
    z-index: 1002;
}

.mobile-menu-close span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    /* margin: 3px 0; */
    transition: 0.3s;
    box-shadow: 0 0 5px rgba(0, 255, 174, 0.3);
    position: absolute;
    right: 12px;
}

.mobile-menu-close span:nth-child(1) {
    transform: rotate(45deg);
}

.mobile-menu-close span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-close span:nth-child(3) {
    transform: rotate(-45deg);
}

/* Make sure the close button is visible */
.mobile-menu-header {
    position: relative;
    z-index: 1002;
}

/* Media Queries */
@media (min-width: 769px) {
    .mobile-nav-header {
        display: none !important;
    }

    .logo-section2 {
        display: block;
    }

    .navbar-military {
        display: flex;
    }
}

@media (max-width: 768px) {
    .logo-section2 {
        display: none;
    }

    .navbar-military {
        display: none;
    }

    .mobile-nav-header {
        display: flex;
    }
}

/* Updated mobile breakpoint styles */
@media (max-width: 480px) {
    .mobile-nav-links a {
        font-size: 1.1rem;
        padding: 0.7rem 1rem;
    }
    
    .mobile-menu {
        height: 60vh;
        max-height: 450px;
    }
    
    .mobile-menu-header {
        padding: 0.8rem;
        min-height: 60px;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .mobile-menu {
        height: 55vh;
        max-height: 400px;
    }
    
    .mobile-nav-links a {
        font-size: 1rem;
        padding: 0.6rem 0.8rem;
    }
    
    .mobile-menu-header {
        min-height: 55px;
    }
}

.navbar-military .logo-image2 {
    display: block;
    margin: 0 auto;
}

.logo-text {
    text-align: center;
    font-size: 16px;
    margin-top: 20px;
    color: #fff;
}

.footer-darkops {
    background-color: #161515fc;
    margin-top: 20vh;
    padding: 2rem 1rem;
    text-align: center;
    border-top: 2px solid #f1eeee8c;
    box-shadow: 0 -3px 7px rgba(226, 226, 226, 0.571);
}

.footer-content {
    max-width: 960px;
    margin: auto;
    color: #ffffff;
    font-family: 'Share Tech Mono', monospace;
    font-size: 1rem;
    letter-spacing: 0.08rem;
    line-height: 1.6;
    animation: glowIn 1.5s ease-out;
}

.footer-line,
.footer-copy {
    line-height: 1.6;
    margin: 0;
}

.footer-line br {
    display: none;
}

.footer-bottom-centered {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 1rem;
    max-width: 100%;
    flex-wrap: wrap;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    position: relative;
    left: -15px; 
}

.footer-link:hover {
    text-decoration: underline;
    color: #ffffff;
}

.flag-image {
    height: 30px;
    width: auto;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.921));
    transition: transform 0.3s ease;
    position: relative;
    right: -15px;
}

.flag-image:hover {
    transform: scale(1.05);
}

.footer-line span,
.footer-line a {
    color: #fcfcfc;
    font-family: 'Share Tech Mono', monospace;
    font-weight: bold;
    text-shadow: 0 0 5px rgb(255, 255, 255);
    text-decoration: none;
}

.footer-copy {
    margin-top: 0.7rem;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 1rem;
    text-shadow: 0 0 8px rgb(255, 255, 255);
    line-height: 1.6;
}

.footer-line a:hover {
    text-decoration: underline;
    color: #ffffff;
}

@keyframes glowIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced responsive breakpoints */
@media (max-width: 768px) {
    .footer-darkops {
        padding: 1.5rem 0.75rem;
        margin-top: 15vh;
    }
    
    .footer-content {
        font-size: 0.95rem;
        letter-spacing: 0.06rem;
        line-height: 1.6;
    }
    
    .footer-line,
    .footer-copy {
        line-height: 1.6;
    }
    
    .footer-bottom-centered {
        gap: 1.5rem;
    }
    
    .footer-link {
        font-size: 0.95rem;
    }
    
    .flag-image {
        height: 28px;
    }
    
    .footer-copy {
        font-size: 0.95rem;
    }
}

@media (max-width: 600px) {
    .footer-darkops {
        padding: 1.25rem 0.5rem;
        margin-top: 12vh;
    }
    
    .footer-content {
        font-size: 0.9rem;
        letter-spacing: 0.05rem;
        line-height: 1.6;
    }
    
    .footer-line,
    .footer-copy {
        line-height: 1.6;
    }
    
    .footer-line br {
        display: block;
    }
    
    .footer-copy {
        font-size: 0.85rem;
        margin-top: 0.5rem;
    }
    
    .flag-image {
        height: 25px;
    }
    
    .footer-bottom-centered {
        gap: 1rem;
    }
    
    .footer-link {
        font-size: 0.9rem;
        left: -10px;
    }
    
    .flag-image {
        right: -10px;
    }
}

@media (max-width: 480px) {
    .footer-darkops {
        padding: 1rem 0.5rem;
        margin-top: 10vh;
    }
    
    .footer-content {
        font-size: 0.8rem;
        letter-spacing: 0.03rem;
        line-height: 1.6;
    }
    
    .footer-line,
    .footer-copy {
        line-height: 1.6;
    }
    
    .footer-line a {
        word-break: break-all;
        font-size: 0.75rem;
    }
    
    .footer-bottom-centered {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        margin-top: 1rem;
        width: 100%;
        flex-wrap: nowrap;
    }
    
    .footer-link {
        font-size: 0.75rem;
        left: 0;
        position: static;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .flag-image {
        height: 18px;
        right: 0;
        position: static;
        flex-shrink: 0;
    }
    
    .footer-copy {
        font-size: 0.75rem;
        word-break: break-word;
    }
}

@media (max-width: 360px) {
    .footer-darkops {
        padding: 1rem 0.5rem;
        margin-top: 8vh;
    }
    
    .footer-content {
        font-size: 0.7rem;
        letter-spacing: 0.02rem;
        padding: 0 0.25rem;
        line-height: 1.6;
    }
    
    .footer-line,
    .footer-copy {
        line-height: 1.6;
    }
    
    .footer-line a {
        word-break: break-all;
        font-size: 0.65rem;
    }
    
    .footer-bottom-centered {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 0.25rem;
        margin-top: 1rem;
        width: 100%;
        flex-wrap: nowrap;
    }
    
    .footer-link {
        font-size: 0.65rem;
        position: static;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .flag-image {
        height: 16px;
        position: static;
        flex-shrink: 0;
    }
    
    .footer-copy {
        font-size: 0.65rem;
        word-break: break-word;
    }
}