
.gsix-navbar-wrapper{
  background: var(--gsix-nav-bg);
  width: 100%;
}
.gsix-navbar-inner{
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--gsix-container-padding);
}
.gsix-logo-wrap{
  width: 100%;
  display: flex;
  justify-content: var(--gsix-logo-align);
}
.gsix-logo{
  display: block;
  width: var(--gsix-logo-width);
  max-width: 100%;
  height: auto;
  margin: var(--gsix-logo-margin);
  padding: var(--gsix-logo-padding);
  box-sizing: border-box;
}
.gsix-buttons-wrap{
  display: flex;
  gap: var(--gsix-button-gap);
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.gsix-button-link{
  text-decoration: none;
    color: #fff;
    line-height: 1;
    overflow: hidden;
}
.gsix-button{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--gsix-button-padding);
  margin: 0;
  min-height: var(--gsix-button-height);
  background: var(--gsix-button-bg);
  color: var(--gsix-text-color);
  text-decoration: none;
    color: #fff;
    line-height: 1;
    overflow: hidden;
  text-transform: uppercase;
  transition: 0.5s;
  overflow: hidden;
  border-radius: var(--gsix-button-radius);
  border: none;
  box-sizing: border-box;
  line-height: 1.25;
  text-align: center;
}
.gsix-button .gsix-button-text{
  position: relative;
  z-index: 2;
  display: inline-block;
  color: inherit;
  font-size: var(--gsix-button-font-size);
  font-weight: 700;
  letter-spacing: 1px;
  transition: 0.5s;
}
.gsix-button:hover{
  background: var(--gsix-glow-2);
  color: var(--gsix-hover-text-color);
  box-shadow: 0 0 5px var(--gsix-hover-shadow-color),
              0 0 25px var(--gsix-hover-shadow-color),
              0 0 50px var(--gsix-hover-shadow-color),
              0 0 200px var(--gsix-hover-shadow-color);
}
.gsix-button span{
  position: absolute;
  display: block;
}
.gsix-animated-off .gsix-button span:not(.gsix-button-text){
  display: none;
}
.gsix-animated-off .gsix-button{
  border: var(--gsix-border-thickness) solid var(--gsix-glow-3);
}
.gsix-animated-on .gsix-button span:nth-child(1){
  top: 0;
  left: 0;
  width: 100%;
  height: var(--gsix-border-thickness);
  background: linear-gradient(90deg, transparent, var(--gsix-glow-1));
  animation: gsixAnimate1 var(--gsix-animation-speed) linear infinite;
}
.gsix-animated-on .gsix-button span:nth-child(2){
  top: -100%;
  right: 0;
  width: var(--gsix-border-thickness);
  height: 100%;
  background: linear-gradient(180deg, transparent, var(--gsix-glow-1));
  animation: gsixAnimate2 var(--gsix-animation-speed) linear infinite;
  animation-delay: 0.25s;
}
.gsix-animated-on .gsix-button span:nth-child(3){
  bottom: 0;
  right: 0;
  width: 100%;
  height: var(--gsix-border-thickness);
  background: linear-gradient(270deg, transparent, var(--gsix-glow-1));
  animation: gsixAnimate3 var(--gsix-animation-speed) linear infinite;
  animation-delay: 0.5s;
}
.gsix-animated-on .gsix-button span:nth-child(4){
  bottom: -100%;
  left: 0;
  width: var(--gsix-border-thickness);
  height: 100%;
  background: linear-gradient(360deg, transparent, var(--gsix-glow-1));
  animation: gsixAnimate4 var(--gsix-animation-speed) linear infinite;
  animation-delay: 0.75s;
}
@keyframes gsixAnimate1{
  0%{ left: -100%; }
  50%,100%{ left: 100%; }
}
@keyframes gsixAnimate2{
  0%{ top: -100%; }
  50%,100%{ top: 100%; }
}
@keyframes gsixAnimate3{
  0%{ right: -100%; }
  50%,100%{ right: 100%; }
}
@keyframes gsixAnimate4{
  0%{ bottom: -100%; }
  50%,100%{ bottom: 100%; }
}
@media (max-width: 767px){
  .gsix-navbar-inner{ padding:16px 12px; }
  .gsix-buttons-wrap{ gap:12px; }
  .gsix-button{
    padding: 16px 18px;
    width: 100%;
  }
  .gsix-button .gsix-button-text{ font-size:15px; }
}

/* Telegram Floating Button */
.floating-telegram-btn.gsix-floating-telegram-btn{
    position: fixed;
    right: var(--gsix-telegram-right, 50px);
    bottom: var(--gsix-telegram-bottom, 100px);
    width: var(--gsix-telegram-size, 68px);
    height: var(--gsix-telegram-size, 68px);
    background: var(--gsix-telegram-bg, #2AABEE);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
    z-index: 999999;
    text-decoration: none;
    color: #fff;
    line-height: 1;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-telegram-btn.gsix-floating-telegram-btn:hover{
    transform: scale(1.08);
    box-shadow: 0 10px 26px rgba(0,0,0,0.45);
}

.floating-telegram-btn.gsix-floating-telegram-btn svg{
    width: calc(var(--gsix-telegram-size, 68px) * 0.44);
    height: calc(var(--gsix-telegram-size, 68px) * 0.44);
    display: block;
    flex: 0 0 auto;
    color: #fff;
    fill: currentColor;
}

@media (max-width: 600px){
    .floating-telegram-btn.gsix-floating-telegram-btn{
        right: 18px;
        bottom: 80px;
    }
}
