.elementor-6954 .elementor-element.elementor-element-41e962e{--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-6954:not(.elementor-motion-effects-element-type-background), .elementor-6954 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-text );}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-de4463e *//* ================= HEADER BASE ================= */
html, body {
  margin: 0;
  padding: 0;
}
.custom-header {
  position: fixed;
  top: env(safe-area-inset-top);
  left: 0;
  width: 100%;
  z-index: 999;

  background: rgba(0, 6, 20, 0.7);
  backdrop-filter: blur(12px);

  padding: 14px 30px;

  display: flex;
  justify-content: center;

  border-bottom: 1px solid rgba(42,0,255,0.15);
}


/* GLOW LINE */
.custom-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);

  width: 60%;
  height: 1px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(42,0,255,0.6),
    transparent
  );
}
.custom-header::after {
  height: 1px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(42,0,255,0.9),
    transparent
  );

  opacity: 0.8;
}

/* ================= INNER ================= */

.header-inner {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto; /* WICHTIG */

  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ================= LOGO ================= */

.header-logo img {
  height: 75px;
  position: relative;
  top: 5px;
}

.header-inner {
  height: 60px; /* feste Höhe */
}


/* ================= ACTIONS ================= */

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ================= LOGIN ================= */

.header-login {
  color: #aaa;
  text-decoration: none;

  padding: 10px 16px;
  border-radius: 10px;

  font-size: 0.9rem;
  border: 1px solid rgba(255,255,255,0.08);

  transition: all 0.25s ease;
}

.header-login:hover {
  color: #fff;
  border-color: rgba(42,0,255,0.4);
  background: rgba(42,0,255,0.08);
}

/* ================= CTA ================= */

.header-cta {
  background: linear-gradient(135deg, #2A00FF, #5f3bff);
  color: #fff;

  padding: 11px 22px;
  border-radius: 12px;

  font-size: 0.9rem;
  font-weight: 600;

  text-decoration: none;

  box-shadow:
    0 0 20px rgba(42,0,255,0.4),
    0 0 40px rgba(42,0,255,0.2);

  transition: all 0.25s ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  color: #ffffff;

  box-shadow:
    0 0 25px rgba(42,0,255,0.7),
    0 0 60px rgba(42,0,255,0.3);
}

/* ================= HERO OFFSET ================= */

.hero {
  padding-top: 110px;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .custom-header {
    padding: 10px 16px;
  }

  .header-inner {
    height: 50px;
  }

  /* LOGO */
  .header-logo img {
    height: 50px;
    top: 2px;
  }

  /* ACTIONS */
  .header-actions {
    gap: 8px;
  }

  /* LOGIN (klein & clean) */
  .header-login {
    display: inline-block;
    font-size: 0.75rem;
    padding: 6px 8px;
    color: #888;
    border: none;
    background: transparent;
  }

  /* CTA */
  .header-cta {
    padding: 8px 14px;
    font-size: 0.8rem;
    border-radius: 10px;
  }

}
body.admin-bar .custom-header {
  top: 30px;
}/* End custom CSS */