header {
    background-color: rgba(0, 0, 0, 0.8);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 24px 0;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    align-items: center;
}

.navbar-container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0;
}

.navbar-item {
    display: flex;
    align-items: center;
    margin: 0 15px;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.navbar-item a {
    text-decoration: none;
    color: #F5F5F7;
    font-size: 17px;
    font-weight: 500;
    transition: color 0.3s;
}

.navbar-item a:hover {
    color: #2997FF;
}

.navbar-item span {
    text-decoration: none;
    color: #F5F5F7;
    font-size: 17px;
    font-weight: 500;
}

.navbar-title span {
    font-size: 17px;
    font-weight: 700;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.navbar-icon {
    width: 22px;
    height: 22px;
    margin-inline-end: 10px;
}

[dir="rtl"] nav ul {
    flex-direction: row-reverse;
}

.spacer {
    flex-grow: 1;
}
