.navbar {
    width: 100%;
    height: 70px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: linear-gradient(45deg, #b960df, 50%, #77adff);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.navbar-left {
    display: flex;
    align-items: center;
}

.navbar-logo {
    height: 40px;
    margin-right: 12px;
}

.navbar-title {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.navbar-right {
    display: flex;
    gap: 20px;
}

.navbar-right li {
    list-style: none;
}

.navbar-right a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 6px;
    transition: background 0.3s, transform 0.2s;
}

.navbar-right a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}