.top-info-bar {
    background:
        linear-gradient(to bottom, rgba(255, 255, 255, 0.05), #6aa8d6 250%),
        linear-gradient(135deg, #0b0033 0%, #1c003f 50%, #2a004f 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 10px 0;
    font-size: 1rem;
    color: #e0e6f8;
    font-family: 'Kohinoor-Light';
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.top-info-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent url('https://www.transparenttextures.com/patterns/stardust.png') repeat;
    opacity: 0.2;
    animation: stars 60s linear infinite;
    z-index: 0;
}

@keyframes stars {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 1000px 1000px;
    }
}

.info-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.info-left,
.info-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.info-item a {
    color: #9feaff;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Kohinoor-Light';
    transition: all 0.3s ease;
}

.info-item a:hover {
    color: #ffffff;
    text-decoration: none;
}


@media (max-width: 700px) {
    .info-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 6px;
        color: #cbe3ff;
    }

    .info-left,
    .info-right {
        flex-direction: column;
        gap: 4px;
    }
}