.elementor-368 .elementor-element.elementor-element-9739b14{--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;}.elementor-368 .elementor-element.elementor-element-fc2b1c2{--display:flex;--flex-direction:row;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:center;--align-items:center;--margin-top:57px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:10px;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-size:var( --e-global-typography-primary-font-size );font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-368 .elementor-element.elementor-element-f5ed77f > .elementor-widget-container{padding:0px 0px 0px 0px;}.elementor-368 .elementor-element.elementor-element-f5ed77f{text-align:center;}.elementor-368 .elementor-element.elementor-element-f5ed77f .elementor-heading-title{font-family:"Orbitron", Sans-serif;font-size:32px;font-weight:700;-webkit-text-stroke-width:0px;stroke-width:0px;-webkit-text-stroke-color:#000;stroke:#000;color:#00FFCC;}.elementor-368 .elementor-element.elementor-element-5e1ec022{--display:flex;--overlay-opacity:0.5;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-368 .elementor-element.elementor-element-5e1ec022:not(.elementor-motion-effects-element-type-background), .elementor-368 .elementor-element.elementor-element-5e1ec022 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-368 .elementor-element.elementor-element-5e1ec022::before, .elementor-368 .elementor-element.elementor-element-5e1ec022 > .elementor-background-video-container::before, .elementor-368 .elementor-element.elementor-element-5e1ec022 > .e-con-inner > .elementor-background-video-container::before, .elementor-368 .elementor-element.elementor-element-5e1ec022 > .elementor-background-slideshow::before, .elementor-368 .elementor-element.elementor-element-5e1ec022 > .e-con-inner > .elementor-background-slideshow::before, .elementor-368 .elementor-element.elementor-element-5e1ec022 > .elementor-motion-effects-container > .elementor-motion-effects-layer::before{--background-overlay:'';}.elementor-368 .elementor-element.elementor-element-68d40b7f > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}@media(max-width:1024px){.elementor-widget-heading .elementor-heading-title{font-size:var( --e-global-typography-primary-font-size );}}@media(max-width:767px){.elementor-widget-heading .elementor-heading-title{font-size:var( --e-global-typography-primary-font-size );}}/* Start custom CSS for container, class: .elementor-element-9739b14 *//* === Matrix Canvas Container === */
.matrix-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

/* === Main Matrix Rain Canvas === */
#matrixRain {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.5; /* Adjust for intensity */
}

/* === Scanline Overlay for CRT Vibe === */
.matrix-scanlines::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: repeating-linear-gradient(
    to bottom,
    rgba(0, 255, 128, 0.03) 0px,
    rgba(0, 255, 128, 0.03) 2px,
    transparent 2px,
    transparent 4px
  );
  animation: flicker 2s infinite ease-in-out;
  z-index: 1;
  pointer-events: none;
}

/* === Subtle Glow Flicker Animation === */
@keyframes flicker {
  0%, 100% { opacity: 0.1; }
  50% { opacity: 0.2; }
}

/* === Matrix Reflection Canvas (Flipped) === */
.matrix-reflection {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  transform: scaleY(-1);
  opacity: 0.12;
  pointer-events: none;
  filter: blur(2px);
  z-index: -2;
}/* End custom CSS */
/* Start custom CSS for heading, class: .elementor-element-f5ed77f *//* MATRIX STYLE GME LOGIN HEADING */

/* Base Glitch Heading */
.glitch-heading {
  font-family: 'Orbitron', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #00ff66; /* Matrix green */
  text-align: center;
  position: relative;
  display: inline-block;
  line-height: 1;
  padding: 0 16px;
  text-shadow: 0 0 5px #00ff66, 0 0 10px #00ff66;
  animation: matrixPulse 3s infinite ease-in-out;
}

/* Duplicate Layers */
.glitch-heading::before,
.glitch-heading::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  color: #00ff66;
  line-height: 1;
  opacity: 0.75;
}

/* Top layer flick */
.glitch-heading::before {
  left: 1px;
  text-shadow: -1px 0 #00ffcc;
  animation: glitchFlickerTop 2s infinite linear;
}

/* Bottom layer flick */
.glitch-heading::after {
  left: -1px;
  text-shadow: 1px 0 #39ff14;
  animation: glitchFlickerBottom 2.5s infinite linear;
}

/* Subtle glow pulsing */
@keyframes matrixPulse {
  0%, 100% {
    text-shadow: 0 0 5px #00ff66, 0 0 10px #00ff66;
  }
  50% {
    text-shadow: 0 0 8px #00ff99, 0 0 16px #00ff99;
  }
}

/* Glitch flicker layers */
@keyframes glitchFlickerTop {
  0%, 100% {
    clip: rect(0, 9999px, 0, 0);
  }
  10% {
    clip: rect(5px, 9999px, 20px, 0);
  }
  20% {
    clip: rect(10px, 9999px, 25px, 0);
  }
  30% {
    clip: rect(8px, 9999px, 18px, 0);
  }
  50% {
    clip: rect(12px, 9999px, 22px, 0);
  }
  70% {
    clip: rect(3px, 9999px, 17px, 0);
  }
}

@keyframes glitchFlickerBottom {
  0%, 100% {
    clip: rect(0, 9999px, 0, 0);
  }
  15% {
    clip: rect(30px, 9999px, 45px, 0);
  }
  35% {
    clip: rect(38px, 9999px, 55px, 0);
  }
  60% {
    clip: rect(32px, 9999px, 50px, 0);
  }
  85% {
    clip: rect(28px, 9999px, 48px, 0);
  }
}/* End custom CSS */
/* Start custom CSS for shortcode, class: .elementor-element-68d40b7f *//* Optional override for form-specific glow or tweaks */
.um.um-login {
  z-index: 2;
  position: relative;
}

/* You can optionally enhance glow inside only this form */
.um.um-login input[type="submit"] {
  text-transform: uppercase;
  letter-spacing: 0.5px;
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-5e1ec022 *//* === Matrix Backgrounds === */
#matrixRain, .matrix-reflection {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
}
#matrixRain {
  z-index: -2;
  opacity: 0.5;
}
.matrix-reflection {
  z-index: -3;
  opacity: 0.08;
  transform: scaleY(-1);
  filter: blur(2px);
}

/* === Ultimate Member Login Glass Panel === */
.form-inner-container {
  background: rgba(0, 0, 0, 0.6);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 0 30px #00ffcc88;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  max-width: 460px;
  margin: 60px auto;
  position: relative;
  z-index: 2;
}

/* === UM Form Cleanup === */
.um.um-login,
.um.um-login .um-form,
.um-form,
.um {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* === Input + Labels === */
.um.um-login .um-field-label {
  color: #ff0033;
  font-weight: bold;
}
.um.um-login input[type="text"],
.um.um-login input[type="password"] {
  background: #000;
  color: #fff;
  border: 1px solid #00ffcc;
  border-radius: 8px;
  padding: 10px;
  box-shadow: inset 0 0 5px #00ffcc;
}

/* === Submit Button === */
.um.um-login input[type="submit"] {
  background: #ff0033;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0 0 15px #ff0033;
  transition: 0.3s ease;
}
.um.um-login input[type="submit"]:hover {
  box-shadow: 0 0 20px #ff0033, 0 0 30px #ff0033 inset;
  transform: scale(1.03);
}

/* === Checkbox / Keep Me Signed In === */
.um.um-login .um-field-checkbox {
  margin-top: 15px;
  color: #ccc;
}

/* === Footer Neon === */
footer, .elementor-footer {
  color: #00ffcc;
  text-shadow: 0 0 6px #00ffcc;
}

/* === Elementor Section Cleanup (Safe) === */
.elementor-widget-container,
.elementor-element,
.elementor-section {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

/* === Global Elementor Cleanup === */
.elementor-section,
.elementor-container,
.elementor-column,
.elementor-widget-wrap,
.elementor-widget-container {
  background-color: transparent !important;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

/* === Remove Gray Overlay in Elementor Editor === */
body.elementor-editor-active .elementor-section-wrap {
  background: transparent !important;
}

/* === Remove extra spacing from side columns === */
.elementor-column:not(:has(.form-inner-container)) {
  display: none !important;
}

.form-inner-container {
  background: rgba(0, 0, 0, 0.55);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 0 15px #00ffcc, 0 0 30px rgba(0, 255, 204, 0.3);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  max-width: 460px;
  margin: 60px auto;
  position: relative;
  z-index: 2;
}

header, .elementor-header, .site-header, .main-header {
  background: rgba(0, 0, 0, 0.4) !important;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 99;
}

header nav a,
.elementor-nav-menu a {
  color: #00ffcc !important;
  text-shadow: 0 0 5px #00ffcc;
}/* End custom CSS */