.glass-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    padding: 12px 28px;
    margin-bottom: 40px;
    box-shadow: var(--shadow), inset 0 1px 1px rgba(255, 255, 255, 0.15);
    position: sticky;
    top: 20px;
    z-index: 100;
    flex-wrap: wrap;
    transition: all 0.4s ease;
}
.glass-nav.scrolled {
    border-radius: 40px;
    padding: 10px 20px;
    background: rgba(0, 20, 10, 0.7);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.7), inset 0 1px 1px rgba(255, 255, 255, 0.2);
}
.logo {
    font-family: 'Arad Dots', 'Arad', sans-serif;
    font-size: 26px;
    font-weight: 700;
    background: linear-gradient(135deg, #fff, #6ee7b7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 3px;
    flex-shrink: 0;
}
.nav-links {
    display: flex;
    gap: 8px;
    list-style: none;
    flex-wrap: wrap;
    align-items: center;
}
.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(110, 231, 183, 0.3);
    white-space: nowrap;
}
.nav-links a:hover,
.nav-links a:active {
    background: rgba(110, 231, 183, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
    transform: translateY(-2px);
}
#menu-toggle {
    display: none;
}
.menu-btn {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #fff;
    padding: 10px 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    line-height: 1;
    transition: all 0.3s;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}
.menu-btn:active {
    background: rgba(110, 231, 183, 0.3);
    transform: scale(0.94);
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(110, 231, 183, 0.35);
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}
.social-icons a:hover,
.social-icons a:active {
    background: rgba(110, 231, 183, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}
.social-icons img {
    width: 22px;
    height: 22px;
    pointer-events: none;
}