#nav-outer {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: #000000;
    padding: 4px;
    font-family: 'Mac Minecraft', monospace;
    font-size: 1.25rem;
}

/* Desktop — JS controls this via .nav-hidden */
.nav-desktop {
    display: block;
}

.nav-mobile {
    display: none;
}

.nav-hidden {
    display: none !important;
}

.nav-visible {
    display: block !important;
}

#nav-bar {
    color: #ffffff;
    height: 96px;
    background-color: #EB73B0;
    outline: 4px solid #FFA6CE;
    margin: 4px;
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 64px;
    width: auto;
    margin: 8px 48px;
    cursor: pointer;
}

.nav-links-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 20px;
    color: #ffffff;
}

#links a {
    color: #ffffff;
    text-decoration: none;
    padding: 11px 18px 11px 22px;
    border-radius: 5px;
}

#links a:hover {
    background-color: #9D2E7C;
}

#link-store a {
    color: #ffffff;
    text-decoration: none;
    padding: 11px 18px 11px 22px;
    border: 3px solid #ffffff;
}

#link-store a:hover {
    background-color: #9D2E7C;
}

.nav-accent {
    background-color: #9D2E7C;
    padding: 8px;
}

/* Mobile */
.nav-mobile-bar {
    background-color: #EB73B0;
    outline: 4px solid #FFA6CE;
    margin: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    height: 64px;
}

.nav-logo-mobile {
    height: 48px;
    width: auto;
    cursor: pointer;
}

.nav-hamburger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    transition: transform 0.2s, opacity 0.2s;
    transform-origin: center;
}

.ham-open-top {
    transform: rotate(45deg) translate(5px, 5px);
}

.ham-open-mid {
    opacity: 0;
}

.ham-open-bot {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-mobile-links {
    display: none;
    background-color: #EB73B0;
    outline: 4px solid #FFA6CE;
    margin: 0 4px;
    flex-direction: column;
    color: #ffffff;
}

.nav-mobile-links.nav-mobile-links--open {
    display: flex;
}

.nav-mobile-links a {
    color: #ffffff;
    text-decoration: none;
    padding: 12px 24px;
    display: block;
}

.nav-mobile-links a:hover {
    background-color: #9D2E7C;
}

.nav-mobile-store {
    border-top: 2px solid #ffffff;
}

/* Mobile breakpoint — fallback only */
