.lang-switcher {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-left: 10px;
  }
  
  .lang-switcher__btn {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    color: #f5c43a;
    padding: 10px 14px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: 0.25s ease;
    backdrop-filter: blur(10px);
  }
  
  .lang-switcher__btn:hover {
    background: rgba(245,196,58,0.12);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245,196,58,0.15);
  }
  
  .lang-switcher__dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
  
    min-width: 220px;
  
    background: rgba(10,10,10,0.95);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
  
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  
    padding: 8px;
  
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
  
    transition: 0.25s ease;
  
    z-index: 9999;
  }
  
  .lang-switcher:hover .lang-switcher__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .lang-switcher__dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
  
    padding: 10px 12px;
  
    color: #fff;
    text-decoration: none;
  
    border-radius: 12px;
  
    font-size: 14px;
  
    transition: 0.2s ease;
  }
  
  .lang-switcher__dropdown a:hover {
    background: rgba(245,196,58,0.12);
    color: #f5c43a;
    transform: translateX(4px);
  }
  @media (max-width: 990px) {
    .lang-switcher {
      justify-content: center;
    }
    .lang-switcher__dropdown {
      right: unset;
    }
  }