.elementor-2336 .elementor-element.elementor-element-413a19a{--display:flex;--min-height:100vh;--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-2336 .elementor-element.elementor-element-413a19a:not(.elementor-motion-effects-element-type-background), .elementor-2336 .elementor-element.elementor-element-413a19a > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:transparent;background-image:linear-gradient(180deg, #000000 0%, #000000 100%);}.elementor-2336 .elementor-element.elementor-element-4682a0e{--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-3dd8f1b *//* Fullscreen Section + Canvas Overlay */
.secret-hero {
  position: relative;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Matrix Canvas */
#matrixRain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.2;
  pointer-events: none;
}

/* Inner Content Centering */
.inner-hero {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 90%;
  padding: 2rem;
}

/* Glitch Title */
.glitch-title {
  font-size: 3rem;
  font-weight: bold;
  font-family: 'Orbitron', sans-serif;
  text-shadow: 0 0 10px #ff3c00, 0 0 20px #ff3c00;
  animation: flicker 2s infinite;
}

/* Subtitle */
.glitch-sub {
  color: #ccc;
  font-size: 1.2rem;
  margin-top: 1rem;
}

/* Button Styling */
.glow-btn {
  margin-top: 2rem;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  background: #00ffcc;
  color: #000;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  box-shadow: 0 0 10px #00ffcc, 0 0 20px #00ffcc;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.glow-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #00ffcc, 0 0 30px #00ffcc;
}

/* Flicker */
@keyframes flicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
  75% { opacity: 0.9; }
}

#matrixRain {
  filter: drop-shadow(0 0 3px #00ffcc);
}

.glow-btn {
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 10px #00ffcc, 0 0 20px #00ffcc; }
  50% { box-shadow: 0 0 20px #00ffcc, 0 0 40px #00ffcc; }
}

.secret-hero {
  animation: matrixFlicker 10s infinite;
}

@keyframes matrixFlicker {
  0%, 100% { opacity: 1; }
  2% { opacity: 0.85; }
  4% { opacity: 1; }
  6% { opacity: 0.95; }
  8% { opacity: 1; }
}

/* Modal Overlay */
.tg-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  backdrop-filter: blur(4px);
}

/* Modal Box */
.tg-modal {
  background: #111;
  padding: 2rem 3rem;
  border: 2px solid #00ffcc;
  box-shadow: 0 0 20px #00ffcc;
  text-align: center;
  max-width: 400px;
  width: 90%;
  border-radius: 12px;
  color: #fff;
  animation: modalFade 0.4s ease-out;
}

/* Modal Buttons */
.tg-confirm-btn,
.tg-close-btn {
  display: inline-block;
  margin-top: 1.5rem;
  margin-right: 1rem;
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s ease;
}

.tg-confirm-btn {
  background: #00ffcc;
  color: #000;
  box-shadow: 0 0 10px #00ffcc;
}

.tg-confirm-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #00ffcc;
}

.tg-close-btn {
  background: #222;
  color: #999;
  border: 1px solid #555;
}

.tg-close-btn:hover {
  color: #fff;
  border-color: #999;
}

@keyframes modalFade {
  from { transform: scale(0.9); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}/* End custom CSS */