/* =========================
   TOP ROLL MENU
========================= */

.top-roll-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;

    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.menu-roll {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;

    list-style: none;
    padding: 1rem 2rem;
    margin: 0;
}

.menu-roll li {
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    color: #0ff;
    letter-spacing: 1px;
    text-transform: uppercase;

    position: relative;
    padding: 0.5rem 0.2rem;

    text-shadow:
        0 0 8px rgba(0, 255, 255, 0.4),
        0 0 16px rgba(0, 255, 255, 0.2);

    transition: color 0.3s ease;
}

.menu-roll li::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0ff;
    transition: width 0.3s ease;
}

.menu-roll li:hover {
    color: #fff;
}

.menu-roll li:hover::after {
    width: 100%;
}

/* Push content down so menu doesn't overlap */
section {
    padding-top: 90px;
}

/* Mobile: wrap into two lines */
@media (max-width: 768px) {
    .menu-roll {
        flex-wrap: wrap;
        gap: 1rem;
    }
}
