.elementor-17 .elementor-element.elementor-element-052bc6f{--display:flex;}.elementor-17 .elementor-element.elementor-element-6a0316a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-dd418ad */:root {
  --bg-gradient: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  --accent: #38f9d7;
  --text: #e0e0e0;
  --hover-bg: rgba(56,249,215,0.1);
  --font: 'Orbitron', sans-serif;
}

.crypto-menu {
  background: var(--bg-gradient);
  padding: 0 2rem;
  font-family: var(--font);
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.crypto-menu__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.crypto-menu__list > li {
  position: relative;
  margin-right: 1.5rem;
}

.crypto-menu__list > li:last-child {
  margin-right: 0;
}

.crypto-menu a {
  display: block;
  padding: 1.2rem 0;
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}

.crypto-menu a::after {
  content: '';
  position: absolute;
  bottom: .5rem;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s, left 0.3s;
}

.crypto-menu a:hover {
  color: #fff;
}

.crypto-menu a:hover::after {
  width: 80%;
  left: 10%;
}

.has-submenu:hover > a {
  color: #fff;
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #111;
  border: 1px solid var(--accent);
  border-radius: 4px;
  padding: .5rem 0;
  min-width: 180px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.6);
  z-index: 10;
  backdrop-filter: blur(5px);
}

.has-submenu:hover .submenu {
  display: block;
  animation: fadeIn 0.2s ease-out;
}

.submenu li {
  margin: 0;
}

.submenu a {
  padding: .8rem 1.2rem;
  color: var(--text);
  white-space: nowrap;
}

.submenu a:hover {
  background: var(--hover-bg);
  color: #fff;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Responsive — простой мобильный хедер */
@media (max-width: 768px) {
  .crypto-menu__list {
    flex-direction: column;
    display: none;
  }
  .crypto-menu.open .crypto-menu__list {
    display: flex;
  }
  /* Добавьте свой JS-класс .open при клике на бургер */
}/* End custom CSS */