.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 10px 25px;
    background: #121212;
    color: #F1F1F1;
    font: 500 13px/1 'Poppins', sans-serif;
}

.topbar__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #F1F1F1;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    transition: opacity 0.2s ease;
}

.topbar__item:hover,
.topbar__item:focus-visible {
    opacity: 0.7;
}

.topbar__stars {
    color: #FBBC05;
    font-size: 13px;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .topbar {
        padding: 10px 15px;
        font-size: 12px;
    }

    .topbar__stars {
        font-size: 12px;
    }
}
