/* =========================================
   BASE MENU STYLE (unchanged)
   ========================================= */
.main-nav .menu {
    display: flex;
    list-style: none;
    margin: 20px auto;
    padding: 0;
    border-radius: 14px;
    background: #0abdc6;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.main-nav .menu-item {
    position: relative;
    padding: 14px 26px 14px 52px;
    border-left: 1px solid rgba(255, 255, 255, 0.25);
    transition: 0.25s ease;
}

.main-nav .menu-item:first-child {
    border-left: none;
    border-radius: 14px 0 0 14px;
}

.main-nav .menu-item:last-child {
    border-radius: 0 14px 14px 0;
}

.main-nav .menu-item a {
    text-decoration: none;
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.25s ease;
}

/* =========================================
   ICONS (from your assets folder)
   ========================================= */
.menu-icon {
    width: 18px;
    height: 18px;
    margin-right: 6px;
    vertical-align: middle;
}

.menu-text {
    vertical-align: middle;
}

/* =========================================
   NETFLIX UNDERLINE
   ========================================= */
.main-nav .menu-item::after {
    content: "";
    position: absolute;
    left: 30%;
    right: 30%;
    bottom: 6px;
    height: 3px;
    background: white;
    border-radius: 3px;
    opacity: 0;
    transform: scaleX(0.4);
    transition: 0.25s ease;
}

.main-nav .menu-item:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

/* =========================================
   HOVER EFFECTS (lift + glow)
   ========================================= */
.main-nav .menu-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(255, 255, 255, 0.35);
}

.main-nav .menu-item:hover::before {
    transform: translateY(-50%) scale(1.1);
    opacity: 1;
}

.main-nav .menu-item:hover a {
    color: #ffffff;
}


/* =========================================
   ACTIVE ITEM — THE PRO LOOK
   ========================================= */
.main-nav .current-menu-item {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.30),
        inset 0 0 10px rgba(255, 255, 255, 0.45);
}

.main-nav .current-menu-item a {
    color: blue !important;
    /* твой цвет активного текста */
    font-weight: 700;
}

.main-nav .current-menu-item::after {
    opacity: 1 !important;
    transform: scaleX(1) !important;
    background: blue !important;
    /* underline активного пункта */
}

.main-nav .current-menu-item::before {
    opacity: 1;
    transform: translateY(-50%) scale(1.15);
    filter: drop-shadow(0 0 4px blue);
}

/* =====================================================================================================================================================
   MOBILE MENU
   ========================================= */