.elementor-kit-282{--e-global-color-primary:#6E9FE4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#5C99E5;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-size:16px;--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Estedad";--e-global-typography-text-font-size:19px;--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Rethink Sans";--e-global-typography-accent-font-weight:500;--e-global-typography-accent-line-height:1px;color:#002DFF;}.elementor-kit-282 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* حالت پایه دکمه: قبل از Hover/Click */
.btn-gaming {
  position: relative;
  display: inline-block;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 900;
  border: none;
  cursor: pointer;
  color: #06101a;
  background: linear-gradient(90deg, #ff00f7, #00eaff, #8b54ff); /* رنگ پایه ثابت و رنگی */
  background-size: 300%;
  letter-spacing: 1px;
  overflow: hidden;
  transition: all 0.3s ease;
  text-shadow: 0 0 6px #ff00f7, 0 0 6px #00eaff;
}

/* متن روی دکمه */
.btn-gaming span {
  position: relative; 
  z-index: 2;
}

/* pseudo-elements قبل از Hover */
.btn-gaming::before,
.btn-gaming::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

/* Blur و Glitch قبل از Hover غیرفعال */
.btn-gaming::before {
  filter: blur(0px);
}

.btn-gaming::after {
  opacity: 0;
  mix-blend-mode: screen;
  animation: none;
}

/* حالت Hover / Active: فعال شدن RGB Flow و Glitch */
.btn-gaming:hover,
.btn-gaming:active {
  animation: rgbFlow 4s linear infinite; /* حرکت رنگ‌ها */
  text-shadow: 0 0 12px #ff00f7, 0 0 12px #00eaff, 0 0 12px #8b54ff;
  transform: translateY(-2px);
}

/* فعال شدن Glitch روی pseudo-element بعد از Hover */
.btn-gaming:hover::before {
  filter: blur(6px);
}

.btn-gaming:hover::after {
  opacity: 1;
  animation: glitch 2.4s infinite;
}

/* حرکت رنگ‌ها */
@keyframes rgbFlow {
  0% { background-position: 0% 0%; }
  50% { background-position: 100% 0%; }
  100% { background-position: 0% 0%; }
}

/* Glitch Animation */
@keyframes glitch {
  0% { transform: translate(0, 0); opacity: 0.8; }
  20% { transform: translate(-2px, 2px); opacity: 0.6; }
  40% { transform: translate(-1px, -1px); opacity: 0.8; }
  60% { transform: translate(2px, 1px); opacity: 0.6; }
  80% { transform: translate(1px, -2px); opacity: 0.8; }
  100% { transform: translate(0, 0); opacity: 0.8; }
}/* End custom CSS */