        /* --- ВЕРХНЯЯ СТРОКА СТАТУСА --- */
        .status-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 25px;
            padding:30px;
        }
        .header-segment {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-dark);
        }
        .brand-logo {
            font-weight: 800;
            letter-spacing: 5px;
            font-size: 18px;
            color: var(--accent-purple);
            text-transform: uppercase;
        }

                /* Главный контейнер */
        .huly-container {
            position: relative;
              width: 100px;
              height: 100px;
              display: flex;
              justify-content: center;
              align-items: center;
        }

        /* --- МЕНЮ-ПОДКОВА --- */
        .dial-wrapper {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 320px;
            height: 320px;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 10;
        }

        .dial-wrapper.open .dial-track-svg {
            opacity: 1;
            transform: scale(1);
        }

        /* Защитная маска для зоны подковы */
        .dial-horseshoe-area {
            position: absolute;
              width: 100%;
              height: 100%;
              clip-path: path("M 216.6 103.4 A 40 40 0 0 1 273.1 46.9 A 160 160 0 1 1 46.9 46.9 A 40 40 0 0 1 103.4 103.4 A 80 80 0 1 0 216.6 103.4 Z");
              pointer-events: none;
              z-index: 2;
              background: var(--accent-purple);
              opacity: 0;
              transform: scale(0.7);
              transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
        }

        .dial-wrapper.open .dial-horseshoe-area {
            opacity: 1;
            transform: scale(1);
        }

        /* Динамический сектор подсветки */
        .dial-highlight {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: repeating-linear-gradient(
                45deg,
                rgba(255,255,255,0.03),
                rgba(255,255,255,0.03) 2px,
                transparent 2px,
                transparent 6px
            ), rgba(255, 255, 255, 0.05);
            transform-origin: center;
            transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
            opacity: 0;
        }

        .dial-highlight.active {
            opacity: 1;
        }

        /* Контейнер иконок */
        .dial-items {
            position: absolute;
            width: 100%;
            height: 100%;
            list-style: none;
            z-index: 3;
            opacity: 0;
            transform: scale(0.7);
            pointer-events: none;
            transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
        }

        .dial-wrapper.open .dial-items {
            opacity: 1;
            transform: scale(1);
            pointer-events: auto;
        }

        .dial-item {
            position: absolute;
            width: 40px;
            height: 40px;
            top: 50%;
            left: 50%;
            margin: -40px;
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--text-muted);
            font-size: 18px;
            cursor: pointer;
            transition: color 0.3s ease, transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
            -webkit-tap-highlight-color: transparent;
            padding: 40px;
        }

        .dial-item:hover, .dial-item.active {
            color: #fff;
        }

        /* Центральная кнопка */
        .dial-center {
            position: relative;
              width: 140px;
              height: 140px;
              border-radius: 50%;
              background: #f0e8fb;
              box-shadow: 0 8px 24px rgba(160, 165, 180, 0.1);
              display: flex;
              justify-content: center;
              align-items: center;
              z-index: 20;
              cursor: pointer;
              transform: scale(0.5);
              transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .dial-wrapper.open .dial-center {
            transform: scale(1);
        }

        .dial-center:hover:before {
            opacity:1;
        }

        .dial-center::before {
            content: '';
              position: absolute;
              width: 150px;
              height: 150px;
              border-radius: 50%;
              border: 3px solid rgb(104, 26, 220);
              pointer-events: none;
              opacity: 0;
              transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .dial-center i {
            font-size: 24px;
            color: var(--accent-purple);
            transition: transform 0.4s ease;
        }

        .dial-wrapper.open .dial-center i {
            transform: rotate(90deg);
        }

        /* --- СОЕДИНИТЕЛЬНАЯ ЛИНИЯ --- */
        .connection-svg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 5;
        }
        
        .connection-path {
            fill: none;
            stroke: var(--line-color);
            stroke-width: 1.5;
            transition: d 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease;
            opacity: 0;
        }

        .dial-wrapper.open ~ .connection-svg .connection-path {
            opacity: 1;
        }

        /* --- ПОДМЕНЮ --- */
        .submenu-wrapper {
            position: absolute;
            top: 50%;
            display: flex;
            align-items: center;
            height: 280px;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease, transform 0.3s ease, left 0.4s ease, right 0.4s ease;
            z-index: 10;
        }

        li.submenu-item img {
            border-radius: 50%;
        }

        .submenu-wrapper.side-right {
            right: -370px;
            left: auto;
            transform: translateY(-50%) translateX(20px);
        }

        .submenu-wrapper.side-left {
            left: -370px;
            right: auto;
            transform: translateY(-50%) translateX(-20px);
        }

        .dial-wrapper.open ~ .submenu-wrapper.visible {
            opacity: 1;
            pointer-events: auto;
        }
        
        .dial-wrapper.open ~ .submenu-wrapper.side-right.visible,
        .dial-wrapper.open ~ .submenu-wrapper.side-left.visible {
            transform: translateY(-50%) translateX(0);
        }

        .submenu-list-container {
            height: 100%;
            width: 250px;
            overflow-y: auto;
            overflow-x: hidden;
            scrollbar-width: none;
            -ms-overflow-style: none;
            mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
            -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
            padding: 40px 0;
        }

        .submenu-list-container::-webkit-scrollbar {
            display: none;
        }

        .submenu-list {
            display: none;
            flex-direction: column;
            gap: 12px;
            list-style: none;
            padding:10px;
        }

        .submenu-list.active {
            display: flex;
        }

        .submenu-item {
            background: #f0e8fb;
            border: 1px solid #f0e8fb;
            border-radius: 12px;
            padding: 12px 16px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
            color: #0a0a2a;
            text-align: left;
        }

        .submenu-item i {
            font-size: 16px;
            color: var(--text-muted);
            transition: color 0.2s ease;
        }

        .submenu-item:hover, .submenu-item.active {
            background: var(--accent-purple);
            border-color: rgba(255, 255, 255, 0.2);
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            transform: scale(1.02);
            color: white;
        }

        .submenu-item:hover i, .submenu-item.active i {
            color: #fff;
        }


        .star-description {
          font-size: 14px;
          line-height: 1.6;
          color: #3f4161;
        }

.huly-container a {
    text-decoration: underline var(--accent-purple);
}


/* --- СТИЛИЗАЦИЯ ФОРМЫ ПОИСКА ПОД ШАБЛОН ИНТЕРФЕЙСА --- */

/* Контейнер самой формы */
#search-form.wp-block-search {
    width: 100%;
    max-width: 300px; /* Ограничиваем ширину, чтобы в коке/панели смотрелось аккуратно */
    display: flex;
    align-items: center;
}

/* Обертка внутри формы (dock-item) */
#search-form .wp-block-search__inside-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    background: var(--bg-card);
    border: 1px solid #e1e3ed;
    border-radius: 14px; /* Мягкое скругление в стиле панелей */
    padding: 4px 6px;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 4px 12px rgba(160, 165, 180, 0.05);
}

/* Эффект фокуса на всей строке поиска */
#search-form .wp-block-search__inside-wrapper:focus-within {
    border-color: var(--accent-purple);
    box-shadow: 0 0 0 3px var(--accent-purple-light), 0 8px 20px rgba(104, 26, 220, 0.08);
}

/* Поле ввода */
#search-form .wp-block-search__input {
    flex: 1;
    border: none !important;
    outline: none !important;
    background: transparent !important;
    padding: 8px 12px !important;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    width: 100%;
}

/* Стилизация плейсхолдера ("параллакс") */
#search-form .wp-block-search__input::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
    font-weight: 400;
}

/* Кнопка отправки поиска с иконкой */
#search-form .wp-block-search__button {
    background: var(--accent-purple-light);
    border: none;
    color: var(--accent-purple);
    width: 34px;
    height: 34px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease;
    font-size: 14px;
}

/* Эффект при наведении на кнопку */
#search-form .wp-block-search__button:hover {
    background: var(--accent-purple);
    color: #ffffff;
    transform: scale(1.05);
}

/* Фикс для Font Awesome внутри кнопки, если псевдоэлемент ломает размеры */
#search-form .wp-block-search__button::before {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900;
    content: "\f002" !important; /* Принудительно ставим лупу */
}
      

        /* Адаптив */
        @media (max-width: 768px) {

            .huly-container { width: 100vw; height: 100vh; min-height: 560px; flex-direction: column; justify-content: flex-start; padding: 10px; }
            .dial-wrapper { position: relative; top: auto; left: auto; transform: scale(0.8); margin-top: 30px; margin-bottom: 5px; }
            .submenu-wrapper.side-left, .submenu-wrapper.side-right { position: relative; top: auto; left: auto; right: auto; transform: translateY(15px); width: 100%; max-width: 320px; height: 220px; margin: 0 auto; opacity: 0; }
            .dial-wrapper.open ~ .submenu-wrapper.visible { opacity: 1; transform: translateY(0); }
            .submenu-list-container { width: 100%; }

        #search-form.wp-block-search {
            max-width: 100%;
            margin: 10px 0;
        }

        }