/* ========== TOP NAVIGATION ========== */
.top-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(26, 32, 44, 0.8);
    border-bottom: 1px solid rgba(45, 55, 72, 0.6);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    height: 64px;
}

.nav-left {
    display: flex;
    align-items: center;
}

.brand-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #48bb78;
    font-size: 1.25rem;
    font-weight: 700;
    transition: opacity 0.2s;
}

.brand-link:hover {
    opacity: 0.8;
}

.brand-icon {
    width: 32px;
    height: 32px;
    margin-right: 0.75rem;
}

.brand-text {
    color: #48bb78;
}

.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
    margin: 0 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: #cbd5e0;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    transition: all 0.2s;
}

.nav-link:hover {
    color: #48bb78;
    background-color: #2d3748;
}

.nav-link.active {
    color: #48bb78;
    background-color: #2d3748;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.discord-link {
    display: flex;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 0.375rem;
    transition: background-color 0.2s;
}

.discord-link:hover {
    background-color: #2d3748;
}

.discord-icon {
    width: 20px;
    height: 20px;
}

.steam-login-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #1b2838;
    color: #0d719f;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 500;
    font-size: 0.875rem;
    transition: background-color 0.2s;
}

.steam-login-btn:hover {
    background: #2a3f5f;
}

.steam-icon {
    width: 16px;
    height: 16px;
} 