/* ============================
   ССЫЛКИ МЕНЮ (Zero Block)
   Класс на текстах: kodi-menu-link
   ============================ */

.kodi-menu-link{}

/* Чёрные квадратные скобки */

.kodi-menu-link::before,
.kodi-menu-link::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  color: #000;                       /* чёрные скобки */
  font-size: 1em;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;              /* не мешают кликам по ссылке */
}

/* Левая скобка */

.kodi-menu-link::before {
  content: "[";
  left: -16px;
}

/* Правая скобка */

.kodi-menu-link::after {
  content: "]";
  right: -16px;
}

/* Показываем скобки при наведении */

.kodi-menu-link:hover::before,
.kodi-menu-link:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateY(-3px);
}

/* Оранжевая подсветка текста при hover */

.kodi-menu-link:hover {
  color: #ff5a00;
  text-shadow: 0 0 10px rgba(255, 90, 0, 0.6);
}


/* ============================
   SPLINE-МОДЕЛЬ
   Блок с HTML: kodi-spline-wrap + kodi-spline
   ============================ */

.kodi-spline-wrap {
  width: 100%;
  height: 600px;              /* можешь поменять под высоту хедера */
  position: relative;
  overflow: hidden;
}

.kodi-spline {
  width: 100%;
  height: 100%;
  border: none;
}


/* ============================
   СТЕКЛЯННОЕ МЕНЮ (подложка)
   Класс на прямоугольнике: glass-menu
   ============================ */

.glass-menu {
  background: rgba(255, 255, 255, 0.08);          /* лёгкий белый слой */
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.30);

  /* эффект стекла */
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.glass-menu:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.45);
  transition: background 0.2s ease, border-color 0.2s ease;
}



/* Терминал */
.kodi-terminal {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: 'Bicubik', monospace;
  font-size: clamp(16px, 4vw, 34px);  
  color: #ffffff;                  /* если фон светлый — заменить на #111 */
  white-space: pre;
  letter-spacing: 0.5px;
  width: 100%;
}

/* Строка */
.kodi-line {
  min-height: 1.5em;
  width: 100%;
  white-space: break-spaces;

}

@media screen and (max-width: 480px) {
  .kodi-terminal {
    font-size: 16px !important;
  }
}

/* Иконка бургер */
.kodi-burger {
  width: 32px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 9999;
  position: relative;
  transition: transform .3s ease;
}

/* Сдвигаем бургер влево при открытии */
.kodi-burger.active {
  transform: translateX(-60px);
}

.kodi-burger span {
  width: 100%;
  height: 3px;
  background: #fff;
  display: block;
  border-radius: 2px;
  transition: .3s ease;
  position: relative;
  z-index: 99999;
}

/* Выпадающее меню */
.kodi-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 30%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  padding: 30px 10px;
  transition: right .3s ease, transform .3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9998;
  font-family: 'Bicubik', sans-serif !important;
}

/* Поднимаем меню чуть вверх при открытии */
.kodi-mobile-menu.active {
  right: 0;
  transform: translateY(-8px);
}

/* Ссылки внутри меню */
.kodi-mobile-menu a {
  position: relative;
  display: inline-block;
  font-family: 'Bicubik', sans-serif !important;
  font-size: 12px;
  color: #ffffff !important;
  text-decoration: none;
  letter-spacing: 0.5px;
  padding-left: 12px;
  padding-right: 12px;
  transition: color .25s ease;
}

/* Скобки по умолчанию скрыты */
.kodi-mobile-menu a::before,
.kodi-mobile-menu a::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
}

/* Левая < */
.kodi-mobile-menu a::before {
  content: "";
  right: 0;
}

/* Показываем скобки при наведении (десктоп) */
.kodi-mobile-menu a:hover::before,
.kodi-mobile-menu a:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateY(-1px);
}

/* Анимация бургер → крестик */
.kodi-burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.kodi-burger.active span:nth-child(2) {
  opacity: 0;
}

.kodi-burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.glass {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 16px;
}
