.hub-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a335c;
    color: white;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

.hub {
    max-width: 720px;
    width: 100%;
}

.hub-title {
    font-size: 2.6rem;
    margin: 0 0 10px 0;
    letter-spacing: 0.02em;
}

.hub-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    opacity: 0.9;
    margin: 0 0 30px 0;
}

.hub-nav {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hub-link {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 10px 18px;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 4px;
    transition: all 0.2s ease;
}

.hub-link:hover {
    background: white;
    color: #0a335c;
}

.hub-marquee {
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid rgba(255,255,255,0.3);
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding: 12px 0;
    margin-bottom: 30px;
}

.hub-marquee-track {
    display: inline-flex;
    gap: 0; /* расстояние между повторами */
    animation: marquee 25s linear infinite;
    font-size: 0.95rem;
    opacity: 0.85;
}

.hub-marquee-track span {
    white-space: nowrap;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.hub-footer {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.5;
}

@media (max-width: 600px) {
    .hub-title {
        font-size: 2rem;
    }

    .hub-subtitle {
        font-size: 1rem;
    }

    .hub-link {
        font-size: 1rem;
        padding: 8px 14px;
    }
}
