:root {
    --neon-color: #ff3864;
    --neon-glow: 0 0 7px #ff3864,
                0 0 10px #ff3864,
                0 0 21px #ff3864,
                0 0 42px #ff3864;
    --text-primary: rgba(255, 255, 255, 0.95);
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-tertiary: rgba(255, 255, 255, 0.5);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background: #111;
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.main-nav {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.25rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    height: 3rem;
}
.nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: 3rem;
    height: 100%;
}
.nav-left {
    flex: 1;
    justify-content: flex-start;
    margin-right: 2rem;
}
.nav-right {
    flex: 1;
    justify-content: flex-end;
    margin-left: 2rem;
}
.nav-center {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
}
.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 450;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--neon-color);
    transition: width 0.3s ease;
}
.nav-link:hover::after {
    width: 100%;
}
.nav-link:hover, .nav-link.active {
    color: white;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}
.nav-link.active::after {
    width: 100%;
    background-color: var(--neon-color);
}
.nav-logo {
    text-decoration: none;
    position: relative;
    padding: 0 1rem;
}
.logo-text {
    font-family: 'Codystar', cursive;
    color: var(--text-primary);
    font-size: 2.25rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-shadow: var(--neon-glow);
    animation: neonFlicker 3.5s infinite alternate-reverse;
    white-space: nowrap;
}
.location-selector {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    letter-spacing: 0.02em;
}
.location-selector:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}
.location-icon {
    width: 18px;
    height: 18px;
    stroke: var(--neon-color);
    stroke-width: 2.5;
}
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 1.5rem;
    }
    .nav-left, .nav-right {
        gap: 2rem;
    }
    .logo-text {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .main-nav {
        padding: 1rem 0;
    }
    .nav-container {
        padding: 0 1rem;
        height: 2.5rem;
    }
    .nav-left, .nav-right {
        gap: 1.5rem;
        margin: 0;
    }
    .nav-center {
        padding: 0 1rem;
    }
    .logo-text {
        font-size: 1.75rem;
    }
    .nav-link {
        font-size: 0.875rem;
    }
    .location-selector {
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
    }
    .location-icon {
        width: 16px;
        height: 16px;
    }
}
@media (max-width: 480px) {
    .nav-left, .nav-right {
        gap: 1rem;
    }
    .logo-text {
        font-size: 1.5rem;
    }
    .location-selector span {
        display: none;
    }
    .location-selector {
        padding: 0.5rem;
    }
} 