.elementor-1138 .elementor-element.elementor-element-f11dd53{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-6479fc7 *//* ===========================
   RÄTSELREISE FABELWESEN
   Success Page – Reality Escape Design System
   =========================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cyan:    #20cfff;
  --magenta: #ff2aa6;
  --violet:  #a855f7;
  --gold:    #f59e0b;
  --bg:      #0d0d1a;
  --bg2:     #12122a;
  --glass-bg:     rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.10);
  --text:    #ffffff;
  --text-dim: rgba(255,255,255,0.70);
  --font: 'Poppins', sans-serif;
}

html, body {
  width: 100%;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  overflow-x: hidden;
}

/* ── Background orbs ── */
.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.22;
  pointer-events: none;
  animation: orbPulse 8s ease-in-out infinite alternate;
}
.orb-cyan {
  width: 700px; height: 700px;
  background: var(--cyan);
  top: -200px; left: -200px;
  animation-delay: 0s;
}
.orb-magenta {
  width: 600px; height: 600px;
  background: var(--magenta);
  bottom: -150px; right: -150px;
  animation-delay: 2s;
}
.orb-violet {
  width: 400px; height: 400px;
  background: var(--violet);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 4s;
}
@keyframes orbPulse {
  from { opacity: 0.15; transform: scale(1); }
  to   { opacity: 0.28; transform: scale(1.08); }
}

/* ── Stars ── */
.stars {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.star {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.8);
  animation: starTwinkle ease-in-out infinite alternate;
}
@keyframes starTwinkle {
  from { opacity: 0.2; transform: scale(1); }
  to   { opacity: 1;   transform: scale(1.4); }
}

/* ── Sparkles ── */
.sparkles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.sparkle {
  position: absolute;
  border-radius: 50%;
  animation: sparkleFloat ease-in-out infinite alternate;
}
@keyframes sparkleFloat {
  from { opacity: 0; transform: translateY(0) scale(1); }
  50%  { opacity: 0.8; }
  to   { opacity: 0; transform: translateY(-30px) scale(0.5); }
}

/* ── Page wrapper ── */
.page-wrapper {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  text-align: center;
  gap: 0;
}

/* ── Trophy / Star icon ── */
.trophy-wrap {
  margin-bottom: 28px;
  animation: popIn 0.7s cubic-bezier(0.34,1.56,0.64,1) both;
}
.trophy-ring {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.12);
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 30px rgba(32,207,255,0.3),
    0 0 60px rgba(255,42,166,0.15),
    inset 0 0 20px rgba(255,255,255,0.04);
  animation: ringGlow 2.5s ease-in-out infinite alternate;
}
@keyframes ringGlow {
  from { box-shadow: 0 0 25px rgba(32,207,255,0.3), 0 0 50px rgba(255,42,166,0.1); }
  to   { box-shadow: 0 0 45px rgba(32,207,255,0.5), 0 0 80px rgba(255,42,166,0.25); }
}
.trophy-icon {
  width: 48px;
  height: 48px;
  animation: starSpin 6s linear infinite;
  filter: drop-shadow(0 0 8px rgba(32,207,255,0.7));
}
@keyframes starSpin {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(1.15); }
  100% { transform: rotate(360deg) scale(1); }
}

/* ── Kicker pill ── */
.kicker-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(32,207,255,0.1);
  border: 1px solid rgba(32,207,255,0.3);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 28px;
  animation: fadeSlideDown 0.6s 0.2s ease both;
}
.kicker-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  animation: dotPulse 1.5s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.6); opacity: 0.6; }
}

/* ── Headline ── */
.headline {
  font-size: clamp(1.8rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeSlideDown 0.6s 0.35s ease both;
}
.gradient-text {
  background: linear-gradient(90deg, var(--cyan) 0%, var(--magenta) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* ── Subtext ── */
.subtext {
  max-width: 620px;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 600;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 48px;
  animation: fadeSlideDown 0.6s 0.5s ease both;
}

/* ── Code card ── */
.code-card {
  margin-bottom: 56px;
  animation: popIn 0.8s 0.65s cubic-bezier(0.34,1.56,0.64,1) both;
}
.code-card-inner {
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 36px 60px 40px;
  backdrop-filter: blur(20px);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05),
    0 24px 60px rgba(0,0,0,0.5);
}
.code-card-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(32,207,255,0.08) 0%, transparent 50%, rgba(255,42,166,0.08) 100%);
  pointer-events: none;
}
/* Top border glow */
.code-card-inner::after {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--magenta), transparent);
}
.code-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.code-label svg {
  color: var(--magenta);
  flex-shrink: 0;
}
.code-number {
  font-size: clamp(5rem, 16vw, 9rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--cyan) 0%, #80e0ff 40%, var(--magenta) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.04em;
  filter: drop-shadow(0 0 30px rgba(32,207,255,0.5));
  animation: codeGlow 2s ease-in-out infinite alternate;
}
@keyframes codeGlow {
  from { filter: drop-shadow(0 0 20px rgba(32,207,255,0.4)); }
  to   { filter: drop-shadow(0 0 50px rgba(32,207,255,0.8)) drop-shadow(0 0 80px rgba(255,42,166,0.3)); }
}
.code-glow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 80px;
  background: radial-gradient(ellipse, rgba(32,207,255,0.25) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Logo box ── */
.logo-wrap {
  animation: fadeSlideUp 0.7s 0.85s ease both;
}
.logo-box {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 28px 44px;
  backdrop-filter: blur(16px);
  min-width: 300px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
/* Cyan border top/left, magenta bottom/right – partial lines */
.logo-box::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px;
  width: 55%; height: 55%;
  border-top: 2px solid var(--cyan);
  border-left: 2px solid var(--cyan);
  border-radius: 20px 0 0 0;
  pointer-events: none;
}
.logo-box::after {
  content: '';
  position: absolute;
  bottom: -2px; right: -2px;
  width: 55%; height: 55%;
  border-bottom: 2px solid var(--magenta);
  border-right: 2px solid var(--magenta);
  border-radius: 0 0 20px 0;
  pointer-events: none;
}

/* Fairy */
.fairy-icon {
  position: absolute;
  top: -36px;
  left: -28px;
  width: 72px;
  height: 72px;
  filter: drop-shadow(0 0 10px rgba(32,207,255,0.7));
  animation: fairyFloat 3s ease-in-out infinite;
}
@keyframes fairyFloat {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50%       { transform: translateY(-8px) rotate(5deg); }
}

/* Arrow deco */
.arrow-deco {
  position: absolute;
}
.arrow-top {
  top: 14px;
  right: 14px;
  width: 44px;
  opacity: 0.8;
}

/* Dragon */
.dragon-icon {
  position: absolute;
  bottom: -42px;
  right: -22px;
  width: 72px;
  height: 84px;
  filter: drop-shadow(0 0 10px rgba(255,42,166,0.7));
  animation: dragonFloat 3.5s ease-in-out infinite;
  animation-delay: 0.5s;
}
@keyframes dragonFloat {
  0%, 100% { transform: translateY(0) rotate(5deg); }
  50%       { transform: translateY(-8px) rotate(-5deg); }
}

/* Logo text */
.logo-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}
.logo-line-top {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.logo-r {
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-cyan {
  color: var(--cyan);
}
.logo-line-bottom {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--magenta);
  text-shadow: 0 0 20px rgba(255,42,166,0.5);
}

/* ── Animations ── */
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes popIn {
  from { opacity: 0; transform: scale(0.7); }
  to   { opacity: 1; transform: scale(1); }
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .code-card-inner {
    padding: 28px 32px 32px;
  }
  .logo-box {
    padding: 24px 32px;
    min-width: 260px;
  }
  .logo-line-bottom {
    font-size: 1.2rem;
  }
  .logo-line-top {
    font-size: 0.95rem;
  }
  .fairy-icon {
    left: -16px;
    width: 58px;
    height: 58px;
  }
  .dragon-icon {
    right: -12px;
    width: 58px;
    height: 68px;
  }
}/* End custom CSS */