.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 80px);
    max-width: 1000px;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.459);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 10px;
    border: 1px solid #242424;
}

.header-logo {
    font-weight: 600;
    font-size: 20px;
    color: #FFFFFF;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.header-logo img {
    width: 32px;
    height: 32px;
}

.header-logo:hover {
    color: #6a69bd;
}

.header-nav {
    display: flex;
    gap: 6px;
    align-items: center;
}

.nav-link {
    color: #696969;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 2px 6px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: #a3a3a3;
}

.nav-link.active {
    color: #e2e2e2;
}

.user-menu {
    position: relative;
    font-size: 15px;
    color: #e2e2e2;
}

.user-trigger {
    cursor: pointer;
    padding: 4px 8px 10px 8px;
    padding-bottom: 4px;
    border-radius: 6px;
    transition: background 0.2s;
}

.user-trigger:hover {
    background: rgba(255, 255, 255, 0.05);
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0;
    min-width: 160px;
    background: rgba(15, 15, 15, 0.95);
    border: 1px solid #242424;
    border-radius: 8px;
    padding: 6px 0;
    display: none;
    flex-direction: column;
    z-index: 2000;
}

.user-dropdown a {
    padding: 8px 14px;
    color: #cfcfcf;
    text-decoration: none;
    transition: background 0.2s;
}

.user-dropdown a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.user-menu:hover .user-dropdown,
.user-trigger:hover .user-dropdown {
    display: flex;
}