@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body.fe-body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  color: #f0f0f5;
  background-color: #0a0a0f;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.fe-heading {
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.fe-heading-hero {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.fe-heading-section {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.fe-subtitle {
  font-size: 1.125rem;
  color: #a0a0b8;
  line-height: 1.6;
  max-width: 600px;
}

.fe-text-gradient {
  background: linear-gradient(135deg, #00f0ff, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fe-text-glow {
  text-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
}

.fe-section {
  padding: 6rem 0;
  position: relative;
}
@media (max-width: 768px) {
  .fe-section {
    padding: 4rem 0;
  }
}

.fe-section-dark {
  background-color: #12121a;
}

.fe-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #00f0ff, #8b5cf6, transparent);
  opacity: 0.3;
  border: none;
}

.fe-maintenance-banner {
  background: #f5c518;
  color: #1a1a00;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  padding: 0.5rem 1rem;
  position: relative;
  z-index: 1049;
}
.fe-maintenance-banner i {
  margin-right: 0.4rem;
}

::selection {
  background-color: rgba(0, 240, 255, 0.3);
  color: #f0f0f5;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0a0a0f;
}

::-webkit-scrollbar-thumb {
  background: rgba(139, 92, 246, 0.4);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(139, 92, 246, 0.6);
}

.fe-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  height: 72px;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), backdrop-filter 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.fe-navbar.scrolled {
  background-color: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}
.fe-navbar .fe-navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 0.75rem;
}
.fe-navbar .fe-navbar-brand img {
  height: 32px;
  width: auto;
}
.fe-navbar .fe-navbar-brand span {
  font-weight: 700;
  font-size: 1.25rem;
  color: #f0f0f5;
  letter-spacing: -0.01em;
}
.fe-navbar .fe-navbar-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.fe-navbar .fe-navbar-nav .fe-nav-link {
  padding: 0.5rem 1rem;
  color: #a0a0b8;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.fe-navbar .fe-navbar-nav .fe-nav-link:hover, .fe-navbar .fe-navbar-nav .fe-nav-link.active {
  color: #f0f0f5;
  background-color: rgba(255, 255, 255, 0.05);
}
.fe-navbar .fe-navbar-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.fe-navbar .fe-navbar-toggle {
  display: none;
  background: none;
  border: none;
  color: #f0f0f5;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
}
@media (max-width: 991.98px) {
  .fe-navbar {
    padding: 0 1rem;
  }
  .fe-navbar .fe-navbar-toggle {
    display: block;
  }
  .fe-navbar .fe-navbar-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .fe-navbar .fe-navbar-menu.open {
    transform: translateX(0);
  }
  .fe-navbar .fe-navbar-menu .fe-navbar-nav {
    flex-direction: column;
    gap: 0.5rem;
  }
  .fe-navbar .fe-navbar-menu .fe-navbar-nav .fe-nav-link {
    font-size: 1.25rem;
    padding: 0.75rem 1rem;
  }
  .fe-navbar .fe-navbar-menu .fe-navbar-cta {
    margin-top: auto;
    flex-direction: column;
  }
  .fe-navbar .fe-navbar-menu .fe-navbar-cta .fe-btn, .fe-navbar .fe-navbar-menu .fe-navbar-cta .wizard-footer .wizard-footer-right .wizard-btn-next, .wizard-footer .wizard-footer-right .fe-navbar .fe-navbar-menu .fe-navbar-cta .wizard-btn-next {
    width: 100%;
    text-align: center;
  }
}

.fe-content {
  padding-top: 72px;
}

.fe-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 1.5rem 4rem;
}
.fe-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #0a0a0f 0%, #12121a 100%);
  z-index: 0;
}
.fe-hero .fe-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
}
.fe-hero .fe-hero-orb--cyan {
  width: 500px;
  height: 500px;
  background: #00f0ff;
  top: -10%;
  right: -10%;
}
.fe-hero .fe-hero-orb--magenta {
  width: 400px;
  height: 400px;
  background: #ff00aa;
  bottom: -5%;
  left: -5%;
}
.fe-hero .fe-hero-orb--purple {
  width: 300px;
  height: 300px;
  background: #8b5cf6;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
}
.fe-hero .fe-hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}
.fe-hero .fe-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  border: 1px solid rgba(0, 240, 255, 0.3);
  background: rgba(0, 240, 255, 0.05);
  color: #00f0ff;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 2rem;
}
.fe-hero .fe-hero-title {
  margin-bottom: 1.5rem;
}
.fe-hero .fe-hero-subtitle {
  margin: 0 auto 2.5rem;
  max-width: 650px;
}
.fe-hero .fe-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.fe-hero .fe-hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.fe-stats-bar {
  background: #12121a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3rem 0;
}
.fe-stats-bar .fe-stat {
  text-align: center;
}
.fe-stats-bar .fe-stat .fe-stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #00f0ff, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fe-stats-bar .fe-stat .fe-stat-label {
  font-size: 0.875rem;
  color: #6a6a80;
  margin-top: 0.25rem;
}

.fe-section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.fe-section-header .fe-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: #6a6a80;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}
.fe-section-header .fe-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.fe-steps .fe-step {
  text-align: center;
  position: relative;
}
.fe-steps .fe-step .fe-step-number {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.3);
  color: #00f0ff;
  font-weight: 700;
  font-size: 1.125rem;
}
.fe-steps .fe-step .fe-step-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.fe-steps .fe-step .fe-step-text {
  color: #a0a0b8;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .fe-steps .fe-step::after {
    content: "";
    position: absolute;
    top: 24px;
    left: calc(50% + 36px);
    width: calc(100% - 72px);
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 240, 255, 0.3), rgba(139, 92, 246, 0.3));
  }
  .fe-steps .fe-step:last-child::after {
    display: none;
  }
}

.fe-cta {
  text-align: center;
  padding: 6rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.fe-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.fe-cta .fe-cta-content {
  position: relative;
  z-index: 1;
}
.fe-cta .fe-cta-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.fe-cta .fe-cta-subtitle {
  color: #a0a0b8;
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.fe-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.fe-social-proof .fe-avatars {
  display: flex;
}
.fe-social-proof .fe-avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #0a0a0f;
  margin-left: -8px;
}
.fe-social-proof .fe-avatars img:first-child {
  margin-left: 0;
}
.fe-social-proof .fe-social-text {
  color: #6a6a80;
  font-size: 0.875rem;
}
.fe-social-proof .fe-social-text strong {
  color: #f0f0f5;
}

.fe-card {
  background: #1a1a2e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 400ms ease-in-out;
  position: relative;
  overflow: hidden;
}
.fe-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #00f0ff, #8b5cf6);
  transition: width 400ms ease-in-out;
}
.fe-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 240, 255, 0.2);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.3), 0 0 60px rgba(0, 240, 255, 0.1);
  background-color: #222240;
}
.fe-card:hover::before {
  width: 100%;
}
.fe-card .fe-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: rgba(0, 240, 255, 0.1);
  color: #00f0ff;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.fe-card:hover .fe-card-icon {
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.3), 0 0 60px rgba(0, 240, 255, 0.1);
}
.fe-card .fe-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #f0f0f5;
}
.fe-card .fe-card-text {
  color: #a0a0b8;
  line-height: 1.6;
}

.fe-card--magenta .fe-card-icon {
  background: rgba(255, 0, 170, 0.1);
  color: #ff00aa;
}
.fe-card--magenta:hover {
  border-color: rgba(255, 0, 170, 0.2);
  box-shadow: 0 0 20px rgba(255, 0, 170, 0.3), 0 0 60px rgba(255, 0, 170, 0.1);
}
.fe-card--magenta:hover .fe-card-icon {
  box-shadow: 0 0 20px rgba(255, 0, 170, 0.3), 0 0 60px rgba(255, 0, 170, 0.1);
}
.fe-card--magenta::before {
  background: linear-gradient(135deg, #ff00aa, #ff6b35);
}

.fe-card--purple .fe-card-icon {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}
.fe-card--purple:hover {
  border-color: rgba(139, 92, 246, 0.2);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.3), 0 0 60px rgba(139, 92, 246, 0.1);
}
.fe-card--purple:hover .fe-card-icon {
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.3), 0 0 60px rgba(139, 92, 246, 0.1);
}
.fe-card--purple::before {
  background: linear-gradient(135deg, #8b5cf6, #00f0ff);
}

.fe-card--green .fe-card-icon {
  background: rgba(0, 255, 136, 0.1);
  color: #00ff88;
}
.fe-card--green:hover {
  border-color: rgba(0, 255, 136, 0.2);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.3), 0 0 60px rgba(0, 255, 136, 0.1);
}
.fe-card--green:hover .fe-card-icon {
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.fe-btn, .wizard-footer .wizard-footer-right .wizard-btn-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.fe-btn::after, .wizard-footer .wizard-footer-right .wizard-btn-next::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.fe-btn:hover::after, .wizard-footer .wizard-footer-right .wizard-btn-next:hover::after {
  opacity: 1;
}
.fe-btn i, .wizard-footer .wizard-footer-right .wizard-btn-next i {
  font-size: 1.1em;
}

.fe-btn-primary, .wizard-footer .wizard-footer-right .wizard-btn-next {
  background: linear-gradient(135deg, #00f0ff, #8b5cf6);
  color: #0a0a0f;
}
.fe-btn-primary::after, .wizard-footer .wizard-footer-right .wizard-btn-next::after {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
}
.fe-btn-primary:hover, .wizard-footer .wizard-footer-right .wizard-btn-next:hover {
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.3), 0 0 60px rgba(0, 240, 255, 0.1);
  transform: translateY(-2px);
  color: #0a0a0f;
}
.fe-btn-primary:active, .wizard-footer .wizard-footer-right .wizard-btn-next:active {
  transform: translateY(0);
}

.fe-btn-secondary {
  background: transparent;
  color: #f0f0f5;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.fe-btn-secondary:hover {
  border-color: rgba(0, 240, 255, 0.4);
  color: #00f0ff;
  box-shadow: inset 0 0 20px rgba(0, 240, 255, 0.05);
}

.fe-btn-ghost {
  background: transparent;
  color: #a0a0b8;
  padding: 0.75rem 1rem;
}
.fe-btn-ghost:hover {
  color: #f0f0f5;
}

.fe-btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  border-radius: 1rem;
}

.fe-btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

.fe-btn-block {
  width: 100%;
}

.fe-btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
}

.fe-footer {
  background: #12121a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4rem 0 2rem;
}
.fe-footer .fe-footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  text-decoration: none;
}
.fe-footer .fe-footer-brand img {
  height: 28px;
  width: auto;
}
.fe-footer .fe-footer-brand span {
  font-weight: 700;
  font-size: 1.1rem;
  color: #f0f0f5;
}
.fe-footer .fe-footer-tagline {
  color: #6a6a80;
  font-size: 0.875rem;
  max-width: 300px;
  line-height: 1.6;
}
.fe-footer .fe-footer-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #f0f0f5;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}
.fe-footer .fe-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.fe-footer .fe-footer-links li {
  margin-bottom: 0.5rem;
}
.fe-footer .fe-footer-links a {
  color: #6a6a80;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.fe-footer .fe-footer-links a:hover {
  color: #00f0ff;
}
.fe-footer .fe-footer-social {
  display: flex;
  gap: 0.75rem;
}
.fe-footer .fe-footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #6a6a80;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.fe-footer .fe-footer-social a:hover {
  color: #00f0ff;
  border-color: rgba(0, 240, 255, 0.4);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.3), 0 0 60px rgba(0, 240, 255, 0.1);
}
.fe-footer .fe-footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.fe-footer .fe-footer-bottom .fe-footer-copy {
  color: #6a6a80;
  font-size: 0.875rem;
}
.fe-footer .fe-footer-bottom .fe-footer-legal {
  display: flex;
  gap: 1.5rem;
}
.fe-footer .fe-footer-bottom .fe-footer-legal a {
  color: #6a6a80;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.fe-footer .fe-footer-bottom .fe-footer-legal a:hover {
  color: #a0a0b8;
}

.wizard {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.wizard::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, #0a0a0f 0%, #12121a 100%);
  z-index: -1;
}

.wizard-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1060;
  height: 4px;
  background: rgba(255, 255, 255, 0.05);
}
.wizard-progress .wizard-progress-bar {
  height: 100%;
  background: linear-gradient(135deg, #00f0ff, #8b5cf6);
  transition: width 600ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.4);
}

.wizard-header {
  position: fixed;
  top: 4px;
  left: 0;
  right: 0;
  z-index: 1055;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.wizard-header .wizard-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.wizard-header .wizard-brand img {
  height: 28px;
}
.wizard-header .wizard-brand span {
  font-weight: 700;
  color: #f0f0f5;
}
.wizard-header .wizard-step-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6a6a80;
  font-size: 0.875rem;
  font-weight: 500;
}
.wizard-header .wizard-step-indicator .wizard-step-current {
  color: #00f0ff;
  font-weight: 700;
}
.wizard-header .wizard-close {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #6a6a80;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}
.wizard-header .wizard-close:hover {
  border-color: rgba(255, 0, 170, 0.4);
  color: #ff00aa;
}

.wizard-form {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(72px + 2rem) 1.5rem 7rem;
  min-height: 100vh;
}

.wizard-step {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: none;
  opacity: 0;
  transform: translateX(40px);
  border: none;
  padding: 0;
}
.wizard-step.active {
  display: block;
}
.wizard-step.entering-next {
  animation: wizardSlideInRight 500ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.wizard-step.entering-prev {
  animation: wizardSlideInLeft 500ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.wizard-step.leaving-next {
  animation: wizardSlideOutLeft 500ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.wizard-step.leaving-prev {
  animation: wizardSlideOutRight 500ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.wizard-step .wizard-step-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  text-align: center;
}
@media (max-width: 768px) {
  .wizard-step .wizard-step-title {
    font-size: 2rem;
  }
}
.wizard-step .wizard-step-subtitle {
  color: #a0a0b8;
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 1.125rem;
}
@media (max-width: 768px) {
  .wizard-step .wizard-step-subtitle {
    font-size: 1rem;
  }
}

@keyframes wizardSlideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes wizardSlideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes wizardSlideOutLeft {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-60px);
  }
}
@keyframes wizardSlideOutRight {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(60px);
  }
}
.wizard-form .wizard-type-card > input[type=radio],
.wizard-form .wizard-theme-card > input[type=radio],
.wizard-form .wizard-toggle > .wizard-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.wizard-form .wizard-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
}
@media (max-width: 575.98px) {
  .wizard-form .wizard-type-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }
}
.wizard-form .wizard-type-card {
  display: block;
  background: #1a1a2e;
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  cursor: pointer;
  transition: all 400ms ease-in-out;
  position: relative;
  overflow: hidden;
}
.wizard-form .wizard-type-card .wizard-type-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 1rem;
}
.wizard-form .wizard-type-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #00f0ff, #8b5cf6);
  transition: width 400ms ease-in-out;
}
.wizard-form .wizard-type-card:hover {
  border-color: rgba(0, 240, 255, 0.3);
  transform: translateY(-2px);
  background: #222240;
}
.wizard-form .wizard-type-card:hover::before {
  width: 60%;
}
.wizard-form .wizard-type-card:has(input:checked) {
  border-color: #00f0ff;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.3), 0 0 60px rgba(0, 240, 255, 0.1);
  background: rgba(0, 240, 255, 0.05);
}
.wizard-form .wizard-type-card:has(input:checked)::before {
  width: 100%;
}
.wizard-form .wizard-type-card:has(input:checked) .wizard-type-icon {
  color: #00f0ff;
  text-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}
.wizard-form .wizard-type-card .wizard-type-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
  transition: all 400ms ease-in-out;
}
.wizard-form .wizard-type-card .wizard-type-name {
  font-size: 0.875rem;
  font-weight: 600;
}
.wizard-form .wizard-type-card .wizard-type-desc {
  font-size: 0.75rem;
  color: #6a6a80;
  margin-top: 0.25rem;
}
.wizard-form .wizard-type-card--compact .wizard-type-card-inner {
  padding: 1.25rem 1rem;
}
.wizard-form .wizard-type-card--compact .wizard-type-icon {
  font-size: 1.5rem;
}
.wizard-form .wizard-field {
  margin-bottom: 1.5rem;
}
.wizard-form .wizard-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #a0a0b8;
  margin-bottom: 0.5rem;
}
.wizard-form .wizard-optional {
  color: #6a6a80;
}
.wizard-form .wizard-input,
.wizard-form .wizard-textarea,
.wizard-form .wizard-select {
  width: 100%;
  background: #1a1a2e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.5rem;
  padding: 0.85rem 1rem;
  color: #f0f0f5;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  transition: all 400ms ease-in-out;
  outline: none;
}
.wizard-form .wizard-input::placeholder,
.wizard-form .wizard-textarea::placeholder,
.wizard-form .wizard-select::placeholder {
  color: #6a6a80;
}
.wizard-form .wizard-input:focus,
.wizard-form .wizard-textarea:focus,
.wizard-form .wizard-select:focus {
  border-color: rgba(0, 240, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.1);
}
.wizard-form .wizard-textarea {
  resize: vertical;
  min-height: 100px;
}
.wizard-form .wizard-hint {
  font-size: 0.8rem;
  color: #6a6a80;
  margin-top: 0.35rem;
  display: block;
}
.wizard-form .wizard-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #1a1a2e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.5rem;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: all 400ms ease-in-out;
}
.wizard-form .wizard-toggle:hover {
  border-color: rgba(0, 240, 255, 0.2);
}
.wizard-form .wizard-toggle .wizard-toggle-info {
  display: flex;
  flex-direction: column;
}
.wizard-form .wizard-toggle .wizard-toggle-title {
  font-weight: 600;
  margin-bottom: 0.15rem;
}
.wizard-form .wizard-toggle .wizard-toggle-desc {
  font-size: 0.875rem;
  color: #6a6a80;
}
.wizard-form .wizard-toggle .wizard-switch {
  width: 48px;
  height: 26px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  position: relative;
  flex-shrink: 0;
  margin-left: 1rem;
  transition: background-color 400ms ease-in-out;
}
.wizard-form .wizard-toggle .wizard-switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #6a6a80;
  border-radius: 50%;
  transition: all 400ms ease-in-out;
}
.wizard-form .wizard-toggle:has(.wizard-checkbox:checked) {
  border-color: rgba(0, 240, 255, 0.3);
  background: rgba(0, 240, 255, 0.03);
}
.wizard-form .wizard-toggle:has(.wizard-checkbox:checked) .wizard-switch {
  background: rgba(0, 240, 255, 0.3);
}
.wizard-form .wizard-toggle:has(.wizard-checkbox:checked) .wizard-switch::after {
  left: 25px;
  background: #00f0ff;
  box-shadow: 0 0 8px rgba(0, 240, 255, 0.5);
}
.wizard-form .wizard-conditional {
  display: none;
}
.wizard-form .wizard-theme-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
}
@media (max-width: 575.98px) {
  .wizard-form .wizard-theme-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}
.wizard-form .wizard-theme-card {
  display: block;
  background: #1a1a2e;
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  transition: all 400ms ease-in-out;
}
.wizard-form .wizard-theme-card .wizard-theme-card-inner {
  display: block;
}
.wizard-form .wizard-theme-card:hover {
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateY(-2px);
}
.wizard-form .wizard-theme-card:has(input:checked) {
  border-color: #8b5cf6;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.3), 0 0 60px rgba(139, 92, 246, 0.1);
}
.wizard-form .wizard-theme-card:has(input:checked) .wizard-theme-preview::after {
  content: "\f272";
  font-family: "bootstrap-icons";
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  font-size: 1.25rem;
  color: #8b5cf6;
  text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}
.wizard-form .wizard-theme-card .wizard-theme-preview {
  height: 120px;
  background: #12121a;
  position: relative;
  overflow: hidden;
}
.wizard-form .wizard-theme-card .wizard-theme-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wizard-form .wizard-theme-card .wizard-theme-preview.no-image {
  background: linear-gradient(135deg, #1a1a2e 0%, #12121a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.wizard-form .wizard-theme-card .wizard-theme-preview.no-image i {
  font-size: 2rem;
  color: #6a6a80;
}
.wizard-form .wizard-theme-card .wizard-theme-name {
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  display: block;
}

.wizard-preview-frame {
  background: #1a1a2e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  overflow: hidden;
}
.wizard-preview-frame .wizard-preview-toolbar {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  gap: 0.5rem;
}
.wizard-preview-frame .wizard-preview-toolbar .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.wizard-preview-frame .wizard-preview-toolbar .dot.red {
  background: #ff5f56;
}
.wizard-preview-frame .wizard-preview-toolbar .dot.yellow {
  background: #ffbd2e;
}
.wizard-preview-frame .wizard-preview-toolbar .dot.green {
  background: #27c93f;
}
.wizard-preview-frame .wizard-preview-toolbar .wizard-preview-url {
  flex: 1;
  text-align: center;
  font-size: 0.75rem;
  color: #6a6a80;
  font-family: monospace;
}
.wizard-preview-frame .wizard-preview-content {
  min-height: 400px;
  padding: 2rem;
}
@media (max-width: 768px) {
  .wizard-preview-frame .wizard-preview-content {
    padding: 1rem;
  }
}

.wizard-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1055;
  padding: 1.25rem 2rem;
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 575.98px) {
  .wizard-footer {
    padding: 1rem;
  }
}
.wizard-footer .wizard-footer-left .wizard-btn-back {
  background: none;
  border: none;
  color: #6a6a80;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.wizard-footer .wizard-footer-left .wizard-btn-back:hover {
  color: #f0f0f5;
  background: rgba(255, 255, 255, 0.05);
}
.wizard-footer .wizard-footer-left .wizard-btn-back:disabled {
  opacity: 0;
  pointer-events: none;
}
.wizard-footer .wizard-footer-center {
  display: flex;
  gap: 0.5rem;
}
.wizard-footer .wizard-footer-center .wizard-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transition: all 400ms ease-in-out;
  cursor: pointer;
}
.wizard-footer .wizard-footer-center .wizard-dot.active {
  background: #00f0ff;
  box-shadow: 0 0 8px rgba(0, 240, 255, 0.5);
  width: 24px;
  border-radius: 4px;
}
.wizard-footer .wizard-footer-center .wizard-dot.completed {
  background: rgba(0, 240, 255, 0.4);
}
@media (max-width: 575.98px) {
  .wizard-footer .wizard-footer-center {
    display: none;
  }
}
.wizard-footer .wizard-footer-right .wizard-btn-next {
  padding: 0.75rem 2rem;
}
.wizard-footer .wizard-footer-right .wizard-btn-next:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.wizard-confirmation {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}
.wizard-confirmation .wizard-confirmation-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(0, 240, 255, 0.1);
  border: 2px solid rgba(0, 240, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2rem;
  color: #00f0ff;
}
.wizard-confirmation .wizard-confirmation-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.wizard-confirmation .wizard-confirmation-text {
  color: #a0a0b8;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.wizard-confirmation .wizard-confirmation-email {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(0, 240, 255, 0.05);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 100px;
  color: #00f0ff;
  font-weight: 600;
  margin-bottom: 2rem;
}

.ev-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  height: 56px;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 10, 15, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.ev-nav .ev-nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.ev-nav .ev-nav-brand:hover {
  opacity: 1;
}
.ev-nav .ev-nav-brand img {
  height: 24px;
}

.ev-minimal-footer {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.ev-minimal-footer .ev-minimal-footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: #6a6a80;
}
.ev-minimal-footer .ev-minimal-footer-inner a {
  color: #6a6a80;
  text-decoration: none;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.ev-minimal-footer .ev-minimal-footer-inner a:hover {
  color: #a0a0b8;
}
.ev-minimal-footer .ev-minimal-footer-sep {
  margin: 0 0.35rem;
  opacity: 0.3;
}

.ev-page .ev-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: calc(56px + 3rem) 1.5rem 3rem;
}
.ev-page .ev-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #0a0a0f 0%, #12121a 100%);
  z-index: 0;
}
.ev-page .ev-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
  z-index: 0;
  pointer-events: none;
}
.ev-page .ev-hero-orb--primary {
  width: 400px;
  height: 400px;
  background: #00f0ff;
  top: -10%;
  right: -5%;
}
.ev-page .ev-hero-orb--secondary {
  width: 350px;
  height: 350px;
  background: #ff00aa;
  bottom: -5%;
  left: -5%;
}
.ev-page .ev-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.ev-page .ev-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  border-radius: 100px;
  border: 1px solid rgba(0, 240, 255, 0.3);
  background: rgba(0, 240, 255, 0.05);
  color: #00f0ff;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.ev-page .ev-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.ev-page .ev-description {
  color: #a0a0b8;
  font-size: 1.125rem;
  line-height: 1.6;
  max-width: 550px;
  margin: 0 auto 1.5rem;
}
.ev-page .ev-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.ev-page .ev-meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #a0a0b8;
  font-size: 0.875rem;
}
.ev-page .ev-meta-item i {
  color: #00f0ff;
}
.ev-page .ev-meta-link {
  color: #a0a0b8;
  text-decoration: none;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.ev-page .ev-meta-link:hover {
  color: #00f0ff;
}
.ev-page .ev-organizer {
  color: #6a6a80;
  font-size: 0.875rem;
}
.ev-page .ev-organizer strong {
  color: #f0f0f5;
}
.ev-page .ev-countdown {
  padding: 2.5rem 1.5rem;
  background: #12121a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.ev-page .ev-countdown-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
@media (max-width: 575.98px) {
  .ev-page .ev-countdown-grid {
    gap: 1rem;
  }
}
.ev-page .ev-countdown-unit {
  text-align: center;
}
.ev-page .ev-countdown-number {
  display: block;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  background: linear-gradient(135deg, #00f0ff, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}
.ev-page .ev-countdown-label {
  font-size: 0.75rem;
  color: #6a6a80;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ev-page .ev-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}
.ev-page .ev-draft-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  margin-bottom: 1.5rem;
  border-radius: 0.5rem;
  background: rgba(255, 107, 53, 0.08);
  border: 1px solid rgba(255, 107, 53, 0.2);
  color: #ff6b35;
  font-size: 0.875rem;
}
.ev-page .ev-rsvp {
  padding: 2rem 0;
}
.ev-page .ev-rsvp-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 575.98px) {
  .ev-page .ev-rsvp-fields {
    grid-template-columns: 1fr;
  }
}
.ev-page .ev-field {
  margin-bottom: 0;
}
.ev-page .ev-field-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #a0a0b8;
  margin-bottom: 0.4rem;
}
.ev-page .ev-input {
  width: 100%;
  background: #1a1a2e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  color: #f0f0f5;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  transition: all 400ms ease-in-out;
  outline: none;
}
.ev-page .ev-input::placeholder {
  color: #6a6a80;
}
.ev-page .ev-input:focus {
  border-color: rgba(0, 240, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.1);
}
.ev-page .ev-input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.ev-page .ev-rsvp-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}
.ev-page .ev-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 400ms ease-in-out;
}
.ev-page .ev-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}
.ev-page .ev-btn-confirm {
  background: linear-gradient(135deg, #00f0ff, #8b5cf6);
  color: #0a0a0f;
}
.ev-page .ev-btn-confirm:hover:not(:disabled) {
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.3), 0 0 60px rgba(0, 240, 255, 0.1);
  transform: translateY(-2px);
}
.ev-page .ev-btn-maybe {
  background: transparent;
  color: #f0f0f5;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.ev-page .ev-btn-maybe:hover:not(:disabled) {
  border-color: rgba(139, 92, 246, 0.4);
  color: #8b5cf6;
}
.ev-page .ev-btn-decline {
  background: transparent;
  color: #6a6a80;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.ev-page .ev-btn-decline:hover:not(:disabled) {
  border-color: rgba(255, 0, 170, 0.4);
  color: #ff00aa;
}
.ev-page .ev-btn-whatsapp {
  background: #25D366;
  color: #fff;
  font-size: 1.125rem;
  padding: 1rem 2.5rem;
}
.ev-page .ev-btn-whatsapp:hover {
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
  transform: translateY(-2px);
}
.ev-page .ev-btn-copy {
  background: transparent;
  color: #a0a0b8;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.ev-page .ev-btn-copy:hover {
  border-color: rgba(0, 240, 255, 0.4);
  color: #00f0ff;
}
.ev-page .ev-cooperation {
  padding: 2rem 0;
}
.ev-page .ev-coop-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2rem;
}
.ev-page .ev-coop-stat {
  text-align: center;
}
.ev-page .ev-coop-stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #00f0ff, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ev-page .ev-coop-stat-label {
  font-size: 0.875rem;
  color: #6a6a80;
}
.ev-page .ev-coop-actions {
  max-width: 400px;
  margin: 0 auto;
}
.ev-page .ev-btn-coop {
  width: 100%;
  background: #1a1a2e;
  border: 2px solid rgba(0, 255, 136, 0.3);
  color: #f0f0f5;
  padding: 1rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ev-page .ev-btn-coop:hover:not(:disabled) {
  border-color: #00ff88;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}
.ev-page .ev-coop-amount {
  font-size: 1.5rem;
  font-weight: 700;
}
.ev-page .ev-coop-label {
  font-size: 0.875rem;
  color: #00ff88;
}
.ev-page .ev-coop-custom {
  margin-bottom: 1rem;
}
.ev-page .ev-coop-custom-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.ev-page .ev-coop-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: #6a6a80;
}
.ev-page .ev-btn-coop-send {
  background: linear-gradient(135deg, #00f0ff, #8b5cf6);
  color: #0a0a0f;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 0.5rem;
  flex-shrink: 0;
  cursor: pointer;
  transition: all 400ms ease-in-out;
}
.ev-page .ev-btn-coop-send:hover:not(:disabled) {
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.3), 0 0 60px rgba(0, 240, 255, 0.1);
}
.ev-page .ev-btn-coop-send:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.ev-page .ev-coop-fee-notice {
  font-size: 0.75rem;
  color: #6a6a80;
  text-align: center;
  margin-top: 1rem;
}
.ev-page .ev-coop-fee-notice i {
  margin-right: 0.25rem;
}
.ev-page .ev-guests {
  padding: 2rem 0;
}
.ev-page .ev-guests-stats {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.ev-page .ev-guests-stat {
  font-size: 0.875rem;
  color: #6a6a80;
}
.ev-page .ev-guests-stat strong {
  margin-right: 0.25rem;
}
.ev-page .ev-guests-stat--confirmed strong {
  color: #00ff88;
}
.ev-page .ev-guests-stat--maybe strong {
  color: #8b5cf6;
}
.ev-page .ev-guests-stat--declined strong {
  color: #ff00aa;
}
.ev-page .ev-guests-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.ev-page .ev-guest-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem 0.35rem 0.35rem;
  background: #1a1a2e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  font-size: 0.875rem;
}
.ev-page .ev-guest-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 240, 255, 0.15);
  color: #00f0ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
}
.ev-page .ev-guest-name {
  color: #f0f0f5;
}
.ev-page .ev-guests-empty {
  text-align: center;
  color: #6a6a80;
  font-size: 0.875rem;
}
.ev-page .ev-share {
  padding: 2rem 0;
}
.ev-page .ev-share-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.ev-page .ev-powered {
  padding: 2rem 0 1rem;
  text-align: center;
  color: #6a6a80;
  font-size: 0.75rem;
}
.ev-page .ev-powered a {
  color: #6a6a80;
  text-decoration: none;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.ev-page .ev-powered a:hover {
  color: #00f0ff;
}
.ev-page [inert] {
  opacity: 0.5;
  pointer-events: none;
  user-select: none;
}

.ws-nav {
  position: sticky;
  top: 0;
  z-index: 1050;
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0 1rem;
}
.ws-nav .ws-nav-inner {
  display: flex;
  align-items: center;
  height: 56px;
  gap: 1.5rem;
}
.ws-nav .ws-nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}
.ws-nav .ws-nav-brand img {
  height: 24px;
}
.ws-nav .ws-nav-brand span {
  font-weight: 700;
  color: #f0f0f5;
  font-size: 0.95rem;
}
.ws-nav .ws-nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
}
.ws-nav .ws-nav-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  color: #6a6a80;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.5rem;
  border: none;
  background: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}
.ws-nav .ws-nav-link:hover {
  color: #f0f0f5;
  background: rgba(255, 255, 255, 0.05);
}
.ws-nav .ws-nav-link.active {
  color: #00f0ff;
  background: rgba(0, 240, 255, 0.05);
}
.ws-nav .ws-nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}
.ws-nav .ws-nav-user {
  color: #6a6a80;
  font-size: 0.875rem;
}
@media (max-width: 575.98px) {
  .ws-nav .ws-nav-user {
    display: none;
  }
}

.ws-content {
  padding: 2rem 0 4rem;
  min-height: calc(100vh - 56px);
}

.ws-setup {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 56px - 4rem);
}

.ws-setup-card {
  max-width: 450px;
  width: 100%;
  text-align: center;
  background: #1a1a2e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  padding: 3rem 2rem;
}
@media (max-width: 575.98px) {
  .ws-setup-card {
    padding: 2rem 1.5rem;
  }
}

.ws-setup-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0, 255, 136, 0.1);
  border: 2px solid rgba(0, 255, 136, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.75rem;
  color: #00ff88;
}

.ws-setup-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.ws-setup-text {
  color: #a0a0b8;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.ws-setup-form {
  text-align: left;
}

.ws-dashboard {
  max-width: 900px;
  margin: 0 auto;
}

.ws-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.ws-banner--draft {
  background: rgba(255, 107, 53, 0.08);
  border: 1px solid rgba(255, 107, 53, 0.2);
  color: #ff6b35;
}
.ws-banner--active {
  background: rgba(0, 255, 136, 0.08);
  border: 1px solid rgba(0, 255, 136, 0.2);
  color: #00ff88;
}
.ws-banner .ws-banner-content {
  flex: 1;
  font-size: 0.875rem;
}

.ws-event-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.ws-event-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.ws-event-meta {
  color: #6a6a80;
  font-size: 0.875rem;
}

.ws-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.ws-stat-card {
  background: #1a1a2e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.5rem;
  padding: 1.25rem;
  text-align: center;
  transition: all 400ms ease-in-out;
}
.ws-stat-card:hover {
  border-color: rgba(0, 240, 255, 0.15);
  transform: translateY(-2px);
}

.ws-stat-icon {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.ws-stat-number {
  font-size: 2rem;
  font-weight: 800;
}

.ws-stat-label {
  font-size: 0.75rem;
  color: #6a6a80;
  margin-top: 0.15rem;
}

.ws-section-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.ws-actions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.75rem;
}

.ws-action-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 1rem;
  background: #1a1a2e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.5rem;
  text-decoration: none;
  color: #a0a0b8;
  font-size: 0.875rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  cursor: pointer;
  transition: all 400ms ease-in-out;
}
.ws-action-card i {
  font-size: 1.5rem;
}
.ws-action-card:hover {
  border-color: rgba(0, 240, 255, 0.3);
  color: #00f0ff;
  transform: translateY(-2px);
}

.ws-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.ws-page-title {
  font-size: 2rem;
  font-weight: 800;
}

.ws-empty {
  text-align: center;
  padding: 5rem 1rem;
}
.ws-empty .ws-empty-icon {
  font-size: 3rem;
  color: #6a6a80;
  margin-bottom: 1.5rem;
}
.ws-empty .ws-empty-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.ws-empty .ws-empty-text {
  color: #a0a0b8;
  margin-bottom: 2rem;
}

.ws-events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1rem;
}
@media (max-width: 575.98px) {
  .ws-events-grid {
    grid-template-columns: 1fr;
  }
}

.ws-event-card {
  background: #1a1a2e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 400ms ease-in-out;
  position: relative;
  overflow: hidden;
}
.ws-event-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #00f0ff, #8b5cf6);
  transition: width 400ms ease-in-out;
}
.ws-event-card:hover {
  border-color: rgba(0, 240, 255, 0.2);
  transform: translateY(-2px);
}
.ws-event-card:hover::before {
  width: 100%;
}
.ws-event-card .ws-event-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.ws-event-card .ws-event-card-type {
  font-size: 0.875rem;
  color: #6a6a80;
}
.ws-event-card .ws-event-card-type i {
  margin-right: 0.25rem;
}
.ws-event-card .ws-event-card-status {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}
.ws-event-card .ws-event-card-status--draft {
  background: rgba(255, 107, 53, 0.1);
  color: #ff6b35;
}
.ws-event-card .ws-event-card-status--active {
  background: rgba(0, 255, 136, 0.1);
  color: #00ff88;
}
.ws-event-card .ws-event-card-status--cancelled {
  background: rgba(255, 0, 170, 0.1);
  color: #ff00aa;
}
.ws-event-card .ws-event-card-status--completed {
  background: rgba(106, 106, 128, 0.1);
  color: #6a6a80;
}
.ws-event-card .ws-event-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.ws-event-card .ws-event-card-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  color: #6a6a80;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.ws-event-card .ws-event-card-meta i {
  margin-right: 0.35rem;
  color: #6a6a80;
}
.ws-event-card .ws-event-card-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.ws-edit-form {
  max-width: 700px;
}
.ws-edit-form .wizard-field {
  margin-bottom: 1.5rem;
}
.ws-edit-form .wizard-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #a0a0b8;
  margin-bottom: 0.5rem;
}
.ws-edit-form .wizard-optional {
  color: #6a6a80;
}
.ws-edit-form .wizard-input,
.ws-edit-form .wizard-textarea,
.ws-edit-form .wizard-select {
  width: 100%;
  background: #1a1a2e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.5rem;
  padding: 0.85rem 1rem;
  color: #f0f0f5;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  transition: all 400ms ease-in-out;
  outline: none;
}
.ws-edit-form .wizard-input::placeholder,
.ws-edit-form .wizard-textarea::placeholder,
.ws-edit-form .wizard-select::placeholder {
  color: #6a6a80;
}
.ws-edit-form .wizard-input:focus,
.ws-edit-form .wizard-textarea:focus,
.ws-edit-form .wizard-select:focus {
  border-color: rgba(0, 240, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.1);
}
.ws-edit-form .wizard-input option,
.ws-edit-form .wizard-textarea option,
.ws-edit-form .wizard-select option {
  background: #1a1a2e;
  color: #f0f0f5;
}
.ws-edit-form .wizard-textarea {
  resize: vertical;
  min-height: 100px;
}
.ws-edit-form .wizard-hint {
  font-size: 0.8rem;
  color: #6a6a80;
  margin-top: 0.35rem;
  display: block;
}
.ws-edit-form .wizard-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.5rem;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: all 400ms ease-in-out;
}
.ws-edit-form .wizard-toggle:hover {
  border-color: rgba(0, 240, 255, 0.2);
}
.ws-edit-form .wizard-toggle-info {
  display: flex;
  flex-direction: column;
}
.ws-edit-form .wizard-toggle-title {
  font-weight: 600;
  margin-bottom: 0.15rem;
}
.ws-edit-form .wizard-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.ws-edit-form .wizard-switch {
  width: 48px;
  height: 26px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  position: relative;
  flex-shrink: 0;
  margin-left: 1rem;
  transition: background-color 400ms ease-in-out;
}
.ws-edit-form .wizard-switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #6a6a80;
  border-radius: 50%;
  transition: all 400ms ease-in-out;
}
.ws-edit-form .wizard-toggle:has(.wizard-checkbox:checked) {
  border-color: rgba(0, 240, 255, 0.3);
  background: rgba(0, 240, 255, 0.03);
}
.ws-edit-form .wizard-toggle:has(.wizard-checkbox:checked) .wizard-switch {
  background: rgba(0, 240, 255, 0.3);
}
.ws-edit-form .wizard-toggle:has(.wizard-checkbox:checked) .wizard-switch::after {
  left: 25px;
  background: #00f0ff;
  box-shadow: 0 0 8px rgba(0, 240, 255, 0.5);
}

.ws-edit-section {
  background: #1a1a2e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.ws-edit-section-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ws-edit-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.ws-danger-zone {
  border-color: rgba(255, 0, 0, 0.15);
  background: rgba(255, 0, 0, 0.02);
}

.ws-dashboard .card {
  background: #1a1a2e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
}
.ws-dashboard .card-body {
  padding: 1.5rem;
}
.ws-dashboard .card-footer {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.ws-dashboard .form-control {
  background: #12121a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #f0f0f5;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  transition: all 400ms ease-in-out;
}
.ws-dashboard .form-control:focus {
  background: #12121a;
  border-color: rgba(0, 240, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.1);
  color: #f0f0f5;
}
.ws-dashboard .form-control::placeholder {
  color: #6a6a80;
}
.ws-dashboard .form-label,
.ws-dashboard label {
  color: #a0a0b8;
  font-size: 0.875rem;
  font-weight: 500;
}
.ws-dashboard .h5, .ws-dashboard h5 {
  color: #f0f0f5;
  font-weight: 700;
}
.ws-dashboard .text-muted {
  color: #6a6a80 !important;
}
.ws-dashboard .btn-primary, .ws-dashboard .btn-dark {
  background: linear-gradient(135deg, #00f0ff, #8b5cf6);
  border: none;
  color: #0a0a0f;
  font-weight: 600;
  transition: all 400ms ease-in-out;
}
.ws-dashboard .btn-primary:hover, .ws-dashboard .btn-dark:hover {
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.3), 0 0 60px rgba(0, 240, 255, 0.1);
  transform: translateY(-1px);
}
.ws-dashboard .btn-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #a0a0b8;
}
.ws-dashboard .btn-secondary:hover {
  border-color: rgba(0, 240, 255, 0.3);
  color: #f0f0f5;
}
.ws-dashboard .btn-danger {
  background: transparent;
  border: 1px solid rgba(255, 0, 170, 0.3);
  color: #ff00aa;
}
.ws-dashboard .btn-danger:hover {
  background: rgba(255, 0, 170, 0.1);
  border-color: #ff00aa;
}
.ws-dashboard {
  /*    .profile-photo-url,
      [wire\\:model] {
          border-radius: 50%;
      }*/
}
.ws-dashboard code, .ws-dashboard .font-mono {
  color: #00f0ff;
}
.ws-dashboard pre {
  background: #12121a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.5rem;
  color: #f0f0f5;
  padding: 1rem;
}
.ws-dashboard .modal-content {
  background: #1a1a2e;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.ws-dashboard .modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.ws-dashboard .modal-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.ws-dashboard .text-success {
  color: #00ff88 !important;
}

.legal-content {
  color: #a0a0b8;
  line-height: 1.8;
}
.legal-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f0f0f5;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.legal-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #f0f0f5;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}
.legal-content p {
  margin-bottom: 1rem;
}
.legal-content strong {
  color: #f0f0f5;
}
.legal-content a {
  color: #00f0ff;
  text-decoration: none;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.legal-content a:hover {
  color: rgb(76.5, 244.5, 255);
  text-decoration: underline;
}
.legal-content ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
.legal-content ul li {
  margin-bottom: 0.5rem;
}
.legal-content code {
  background: rgba(0, 240, 255, 0.1);
  color: #00f0ff;
  padding: 0.15rem 0.4rem;
  border-radius: 0.25rem;
  font-size: 0.85em;
}
.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}
.legal-content table th, .legal-content table td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}
.legal-content table th {
  background: rgba(255, 255, 255, 0.03);
  color: #f0f0f5;
  font-weight: 600;
}
.legal-content table td {
  color: #a0a0b8;
}

@keyframes fe-pulse-glow {
  0%, 100% {
    opacity: 0.15;
    transform: scale(1);
  }
  50% {
    opacity: 0.25;
    transform: scale(1.05);
  }
}
.fe-animate-pulse {
  animation: fe-pulse-glow 4s ease-in-out infinite;
}

@keyframes fe-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
.fe-animate-float {
  animation: fe-float 6s ease-in-out infinite;
}

@keyframes fe-shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}
.fe-animate-shimmer {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0) 100%);
  background-size: 200% 100%;
  animation: fe-shimmer 2s linear infinite;
}

@keyframes fe-neon-flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    text-shadow: 0 0 4px #00f0ff, 0 0 11px #00f0ff, 0 0 19px #00f0ff, 0 0 40px #00f0ff;
  }
  20%, 24%, 55% {
    text-shadow: none;
  }
}
.fe-animate-neon {
  animation: fe-neon-flicker 3s infinite alternate;
}

@keyframes fe-rotate-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.fe-animate-rotate {
  animation: fe-rotate-slow 20s linear infinite;
}

@keyframes fe-gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.fe-animate-gradient {
  background-size: 200% 200%;
  animation: fe-gradient-shift 4s ease-in-out infinite;
}

@media (max-width: 991.98px) {
  .fe-heading-section {
    font-size: 2rem;
  }
  .fe-section-header {
    margin-bottom: 3rem;
  }
  .fe-stats-bar .fe-stat {
    margin-bottom: 1.5rem;
  }
  .fe-stats-bar .fe-stat .fe-stat-number {
    font-size: 2rem;
  }
  .fe-cta .fe-cta-title {
    font-size: 2rem;
  }
}
@media (max-width: 767.98px) {
  .fe-heading-section {
    font-size: 1.75rem;
  }
  .fe-hero {
    padding: 5rem 1rem 3rem;
  }
  .fe-card {
    padding: 1.5rem;
  }
  .fe-section {
    padding: 3rem 0;
  }
  .fe-footer .fe-footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .fe-footer .fe-footer-bottom .fe-footer-legal {
    justify-content: center;
  }
}
@media (max-width: 575.98px) {
  .fe-hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .fe-hero-actions .fe-btn, .fe-hero-actions .wizard-footer .wizard-footer-right .wizard-btn-next, .wizard-footer .wizard-footer-right .fe-hero-actions .wizard-btn-next {
    width: 100%;
  }
  .fe-social-proof {
    flex-direction: column;
  }
}

/*# sourceMappingURL=st_fe.css.map */
