/* ═══════════════════════════════════════════════════════════
   CME EVENT WIZARD - VERSION FINALE COMPLÈTE
   ═══════════════════════════════════════════════════════════ */


.entry-title {
   display: none ;
}



/* Masquer le formulaire natif */
#submit-event-form,
.event-submission-form,
form.event-manager-form {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  overflow: hidden !important;
  z-index: -1 !important;
}



.cme-submission-experience {
  position: relative !important;
  display: flex !important;
}

/* ─────────────────────────────────────────────────────────
   TOASTS
   ───────────────────────────────────────────────────────── */
#toast-container {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translate(-50%, -150%);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.5s cubic-bezier(0.21, 1.02, 0.73, 1), opacity 0.5s ease;
  min-width: 300px;
  max-width: 500px;
}

#toast-container .toast {
  padding: 18px 30px;
  border-radius: 12px;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  margin-bottom: 10px;
  animation: toastSlideIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  background: linear-gradient(135deg, #D31027 0%, #EA384D 100%);
}

#toast-container .toast.success {
  background: linear-gradient(90deg, #00B09B, #96C93D);
}

#toast-container .toast.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

#toast-container .toast::before {
  content: '✗';
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  vertical-align: middle;
  font-weight: bold;
  font-size: 1.2rem;
}

#toast-container .toast.success::before {
  content: '✓';
}

@keyframes toastSlideIn {
  0% {
    opacity: 0;
    transform: translateY(-30px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ─────────────────────────────────────────────────────────
   CONTAINER PRINCIPAL
   ───────────────────────────────────────────────────────── */
.cme-submission-experience {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 90vh;
  padding: 40px 20px;
  font-family: 'Orbitron', Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  overflow: hidden;
  box-sizing: border-box;
}

/* ═══════════════════════════════════════════════════════════
   BACKGROUND AURORA BOREALIS ANIMÉ
   ═══════════════════════════════════════════════════════════ */
.cme-animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: 
    radial-gradient(ellipse at top, #1a0033 0%, #000000 50%),
    radial-gradient(ellipse at bottom, #001a33 0%, #000000 50%);
  overflow: hidden;
  z-index: 1;
}

.cme-animated-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    linear-gradient(45deg, transparent 30%, rgba(0, 255, 255, 0.3) 40%, transparent 50%),
    linear-gradient(-45deg, transparent 30%, rgba(255, 0, 255, 0.3) 40%, transparent 50%),
    linear-gradient(135deg, transparent 30%, rgba(0, 255, 150, 0.3) 40%, transparent 50%);
  animation: auroraMove 20s ease-in-out infinite;
  filter: blur(60px);
}

@keyframes auroraMove {
  0%, 100% {
    transform: rotate(0deg) translateY(0);
  }
  50% {
    transform: rotate(180deg) translateY(-50px);
  }
}

.cme-animated-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(138, 43, 226, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(0, 255, 255, 0.2) 0%, transparent 50%);
  animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

/* Particules scintillantes */
@keyframes sparkle {
  0%, 100% {
    opacity: 0;
    transform: scale(0) translateY(0);
  }
  50% {
    opacity: 1;
    transform: scale(1) translateY(-20px);
  }
}

.sparkle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(0, 255, 255, 0.5) 50%, transparent 100%);
  filter: blur(1px);
}

/* ═══════════════════════════════════════════════════════════
   CARD GLASSMORPHISM OPAQUE ET LISIBLE
   ═══════════════════════════════════════════════════════════ */
.cme-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 650px;
  background: linear-gradient(135deg, 
    rgba(20, 20, 40, 0.95) 0%,
    rgba(10, 10, 30, 0.98) 100%
  );
  backdrop-filter: blur(30px) saturate(150%);
  -webkit-backdrop-filter: blur(30px) saturate(150%);
  border: 2px solid transparent;
  border-radius: 30px;
  padding: 50px;
  color: #fff;
  text-align: center;
  overflow: hidden;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.5),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Bordure dégradé magique qui tourne */
.cme-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 30px;
  padding: 2px;
  background: linear-gradient(
    60deg,
    #00ffff 0%,
    #ff00ff 20%,
    #ffff00 40%,
    #00ff00 60%,
    #00ffff 80%,
    #ff00ff 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: borderRotate 8s linear infinite;
  filter: blur(1px);
}

@keyframes borderRotate {
  0% {
    filter: blur(1px) hue-rotate(0deg);
  }
  100% {
    filter: blur(1px) hue-rotate(360deg);
  }
}

/* Reflet de lumière qui bouge */
.cme-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.08) 50%,
    transparent 70%
  );
  animation: shine 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shine {
  0%, 100% {
    transform: translateX(-100%) translateY(-100%);
  }
  50% {
    transform: translateX(100%) translateY(100%);
  }
}

/* ─────────────────────────────────────────────────────────
   BARRE DE PROGRESSION HOLOGRAPHIQUE
   ───────────────────────────────────────────────────────── */
.cme-progress {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
  transition: opacity 0.4s;
  position: relative;
  z-index: 1;
}

.cme-progress.hidden {
  opacity: 0;
  height: 0;
  margin: 0;
  visibility: hidden;
}

.cme-progress-labels {
  display: flex;
  gap: 5px;
  color: #ffffff;
  font-size: 1rem;
  justify-content: center;
  font-weight: 700;
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
  letter-spacing: 2px;
  animation: textGlow 2s ease-in-out infinite;
}

@keyframes textGlow {
  0%, 100% {
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
  }
  50% {
    text-shadow: 0 0 30px rgba(0, 255, 255, 1), 0 0 40px rgba(255, 0, 255, 0.5);
  }
}

.cme-progress-bar-outer {
  width: 100%;
  height: 8px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: inset 0 0 10px rgba(0, 255, 255, 0.3);
  border: 1px solid rgba(0, 255, 255, 0.4);
}

.cme-progress-bar-fill {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, 
    #00ffff 0%, 
    #00ff88 25%, 
    #ffff00 50%, 
    #ff00ff 75%, 
    #00ffff 100%
  );
  background-size: 200% 100%;
  animation: progressRainbow 3s linear infinite;
  transition: width 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 0 20px rgba(0, 255, 255, 1);
  filter: brightness(1.3);
}

@keyframes progressRainbow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

/* ─────────────────────────────────────────────────────────
   ÉTAPES
   ───────────────────────────────────────────────────────── */
.cme-steps {
  position: relative;
  width: 100%;
  min-height: 400px;
  z-index: 1;
}

.cme-step {
  display: none;
  animation: cmeFadeUp 0.6s ease-out forwards;
}

.cme-step.active {
  display: block;
}

@keyframes cmeFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.cme-title {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #00ffff 0%, #ff00ff 50%, #ffff00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleShimmer 5s ease-in-out infinite;
  letter-spacing: 3px;
  text-transform: uppercase;
}

@keyframes titleShimmer {
  0%, 100% {
    filter: hue-rotate(0deg) brightness(1.2);
  }
  50% {
    filter: hue-rotate(60deg) brightness(1.5);
  }
}

.cme-intro,
.cme-tip {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 35px;
  max-width: 450px;
  margin-inline: auto;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
}

/* ─────────────────────────────────────────────────────────
   CHAMPS HOLOGRAPHIQUES OPAQUES ET LISIBLES
   ───────────────────────────────────────────────────────── */
.cme-field input[type=text],
.cme-field input[type=email],
.cme-field input[type=url],
.cme-field input[type=tel],
.cme-field input[type=date],
.cme-field input[type=time],
.cme-field select,
.cme-field textarea {
  width: 100%;
  background: linear-gradient(135deg, 
    rgba(30, 50, 80, 0.8) 0%, 
    rgba(20, 30, 60, 0.9) 100%
  ) !important;
  border: 1px solid rgba(0, 255, 255, 0.5);
  border-radius: 15px;
  padding: 18px 20px;
  font-size: 1.05rem;
  color: #ffffff !important;
  margin-bottom: 18px;
  transition: all 0.4s ease;
  box-shadow: 
    inset 0 0 20px rgba(0, 255, 255, 0.1),
    0 0 0 rgba(0, 255, 255, 0);
}

/* ══════════════════════════════════════════════════════════
   DATE/TIME INPUTS
   ══════════════════════════════════════════════════════════ */
.cme-field input[type=date],
.cme-field input[type=time] {
  min-height: 60px;
  padding: 18px 60px 18px 20px;
  cursor: pointer;
  position: relative;
}

.cme-field input[type=date]::-webkit-calendar-picker-indicator,
.cme-field input[type=time]::-webkit-calendar-picker-indicator {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 10;
}

.cme-field input[type=date],
.cme-field input[type=time] {
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 28px 28px;
}

.cme-field input[type=date] {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="cyan" viewBox="0 0 24 24"><rect x="3" y="4" width="18" height="18" rx="2" fill="none" stroke="cyan" stroke-width="2"/><line x1="16" y1="2" x2="16" y2="6" stroke="cyan" stroke-width="2"/><line x1="8" y1="2" x2="8" y2="6" stroke="cyan" stroke-width="2"/><line x1="3" y1="10" x2="21" y2="10" stroke="cyan" stroke-width="2"/></svg>');
}

.cme-field input[type=time] {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="cyan" viewBox="0 0 24 24"><circle cx="12" cy="12" r="9" fill="none" stroke="cyan" stroke-width="2"/><polyline points="12,6 12,12 16,14" fill="none" stroke="cyan" stroke-width="2"/></svg>');
}

.cme-field input:focus,
.cme-field select:focus,
.cme-field textarea:focus {
  outline: none;
  border-color: #00ffff;
  background: linear-gradient(135deg, 
    rgba(0, 255, 255, 0.25) 0%, 
    rgba(255, 0, 255, 0.15) 100%
  ) !important;
  box-shadow: 
    inset 0 0 30px rgba(0, 255, 255, 0.2),
    0 0 20px rgba(0, 255, 255, 0.6);
  transform: translateY(-2px);
}

.cme-valid {
  border-color: #00ff88 !important;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.6) !important;
}

.cme-invalid {
  border-color: #ff0055 !important;
  box-shadow: 0 0 20px rgba(255, 0, 85, 0.6) !important;
}

/* ─────────────────────────────────────────────────────────
   BOUTONS - CORRECTION SURVOL BLANC
   ───────────────────────────────────────────────────────── */
.cme-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cme-prev,
.cme-next,
.cme-submit {
  display: inline-block;
  padding: 16px 45px;
  border: 2px solid rgba(0, 255, 255, 0.6);
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, 
    rgba(0, 255, 255, 0.15) 0%, 
    rgba(138, 43, 226, 0.15) 100%
  );
  box-shadow: 
    0 0 15px rgba(0, 255, 255, 0.3),
    inset 0 0 15px rgba(0, 255, 255, 0.05);
  text-transform: uppercase;
  text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
  position: relative;
  overflow: hidden;
}

.cme-prev:hover,
.cme-next:hover,
.cme-submit:hover {
  transform: scale(1.02);
  border-color: rgba(255, 255, 255, 0.9);
  color: #ffffff;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.9);
  box-shadow: 
    0 5px 25px rgba(255, 255, 255, 0.3),
    inset 0 0 20px rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, 
    rgba(0, 255, 255, 0.25) 0%, 
    rgba(255, 0, 255, 0.25) 100%
  );
}

/* Effet subtil au survol */
.cme-prev::before,
.cme-next::before,
.cme-submit::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.cme-prev:hover::before,
.cme-next:hover::before,
.cme-submit:hover::before {
  width: 200px;
  height: 200px;
}

/* ─────────────────────────────────────────────────────────
   RESPONSIVE MOBILE
   ───────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .cme-submission-experience {
    padding: 20px 15px;
    min-height: 100vh;
  }

  .cme-card {
    padding: 35px 24px;
    margin-top: 20px;
  }

  .cme-title {
    font-size: 2.2rem;
  }

  .cme-intro,
  .cme-tip {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .cme-progress {
    margin-bottom: 30px;
  }

  .cme-progress-labels {
    font-size: 0.85rem;
  }

  .cme-steps {
    min-height: 350px;
  }

  .cme-field input,
  .cme-field select,
  .cme-field textarea {
    padding: 15px 18px;
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .cme-field input[type=date],
  .cme-field input[type=time] {
    min-height: 70px;
    font-size: 1.1rem;
    padding: 20px 70px 20px 18px;
    background-size: 35px 35px;
    background-position: right 15px center;
  }

  .cme-nav {
    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
  }

  .cme-nav button {
    width: 100%;
    padding: 14px 30px;
    font-size: 1rem;
  }

  .cme-nav .cme-next,
  .cme-nav .cme-submit {
    order: -1;
  }

  #toast-container {
    top: 20px;
    min-width: 280px;
    max-width: 90%;
  }

  #toast-container .toast {
    padding: 15px 20px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .cme-card {
    padding: 25px 18px;
    border-radius: 20px;
  }

  .cme-title {
    font-size: 1.8rem;
  }

  .cme-progress-bar-outer {
    height: 6px;
  }

  .cme-nav button {
    padding: 12px 25px;
    font-size: 0.95rem;
  }

  .cme-field input[type=date],
  .cme-field input[type=time] {
    background-size: 40px 40px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .cme-card {
    max-width: 700px;
    padding: 45px 40px;
  }
}

/* ─────────────────────────────────────────────────────────
   STYLES POUR ÉTAPE GRATUIT/PAYANT
   ───────────────────────────────────────────────────────── */

/* Container des boutons radio */
[data-step-type="event_ticket_options"] .cme-field {
  margin-bottom: 0 !important;
}

/* Masquer les vrais radio buttons */
input[type="radio"][name="cme_event_ticket_options"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Labels des boutons */
label[for="cme_ticket_free"],
label[for="cme_ticket_paid"] {
  flex: 1;
  min-width: 140px;
  transition: all 0.3s ease;
}

label[for="cme_ticket_free"]:hover {
  background: rgba(0, 255, 136, 0.25) !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 255, 136, 0.3);
}

label[for="cme_ticket_paid"]:hover {
  background: rgba(255, 75, 43, 0.25) !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 75, 43, 0.3);
}

/* État sélectionné */
input[type="radio"][name="cme_event_ticket_options"]:checked + label[for="cme_ticket_free"] {
  background: rgba(0, 255, 136, 0.3) !important;
  border-color: #00ff88 !important;
  box-shadow: 0 0 25px rgba(0, 255, 136, 0.4);
}

input[type="radio"][name="cme_event_ticket_options"]:checked + label[for="cme_ticket_paid"] {
  background: rgba(255, 75, 43, 0.3) !important;
  border-color: #ff4b2b !important;
  box-shadow: 0 0 25px rgba(255, 75, 43, 0.4);
}

/* Container du prix (affiché seulement si payant) */
#ticket-price-container {
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Champ prix */
#cme_event_ticket_price {
  width: 100%;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  color: #fff;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

#cme_event_ticket_price:focus {
  background: rgba(255, 255, 255, 0.2);
  border-color: #00ffff;
  outline: none;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

#cme_event_ticket_price::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* État invalide */
#cme_event_ticket_price.cme-invalid {
  border-color: #ff4b2b;
  box-shadow: 0 0 15px rgba(255, 75, 43, 0.4);
}

/* État valide */
#cme_event_ticket_price.cme-valid {
  border-color: #00ff88;
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

/* Support Mobile v11.20 */
@media (max-width: 600px) {
  [data-step-type="event_ticket_options"] .cme-field > div {
    flex-direction: column !important;
    gap: 12px !important;
  }
}

/* ─────────────────────────────────────────────────────────
   SURGICAL UPDATES v11.20
   ───────────────────────────────────────────────────────── */

/* Note obligatoire */
.cme-required-note {
  font-size: 0.85rem;
  color: #ff7b9b;
  opacity: 0.85;
  display: block;
  margin-top: 4px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

/* Grille Dates & Heures */
.cme-field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 5px;
}

@media (max-width: 600px) {
  .cme-field-row {
    grid-template-columns: 100%;
    gap: 10px;
  }
  
  .cme-card {
    padding: 25px 15px !important;
  }
  
  .cme-title {
    font-size: 1.8rem !important;
  }
}

/* v11.27 - DYNAMIC TAXONOMY GRID & CARDS */
.cme-tax-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)) !important;
  gap: 15px !important;
  margin: 25px 0 !important;
  padding: 10px;
  border: 1px solid transparent;
  transition: all 0.3s;
}

.cme-tax-grid.cme-invalid {
  border-color: #ff0055 !important;
  border-radius: 15px;
  background: rgba(255, 0, 85, 0.05);
}

.cme-tax-card {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px !important;
  padding: 15px 10px !important;
  cursor: pointer !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  min-height: 80px !important;
  position: relative;
  z-index: 10;
}

.cme-tax-card span {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 1rem !important;
  font-weight: 500 !important;
  pointer-events: none !important;
  display: block;
}

.cme-tax-card:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(0, 242, 255, 0.5) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 5px 15px rgba(0, 242, 255, 0.2) !important;
}

.cme-tax-card.active {
  background: rgba(0, 242, 255, 0.15) !important;
  border: 2px solid #00f2ff !important;
  box-shadow: 0 0 20px rgba(0, 242, 255, 0.4) !important;
}

.cme-tax-card.active span {
  color: #00f2ff !important;
  font-weight: 800 !important;
}

/* v11.30 - PREMIUM SUCCESS STATE */
.success-card {
  border-color: rgba(0, 255, 136, 0.4) !important;
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.2) !important;
}

.cme-success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #00B09B 0%, #96C93D 100%);
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  color: white;
  margin: 0 auto 30px;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
  animation: successPop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes successPop {
  0% { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.cme-title.success {
  background: linear-gradient(90deg, #00ff88 0%, #ffff00 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  margin-bottom: 25px !important;
}

.success-state .cme-intro {
  max-width: 550px !important;
  line-height: 1.6;
}

/* v11.31 - PREMIUM PREVIEW GRID */
.cme-preview-title {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 25px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.cme-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 25px;
}

.cme-preview-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.3s;
}

.cme-preview-item:hover {
  transform: translateX(5px);
  background: rgba(255, 255, 255, 0.08);
}

.cme-preview-icon {
  font-size: 1.4rem;
  width: 40px;
  height: 40px;
  background: rgba(0, 242, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cme-preview-info {
  display: flex;
  flex-direction: column;
  text-align: left;
  overflow: hidden;
}

.cme-preview-info label {
  font-size: 0.75rem;
  color: #00ffff;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.cme-preview-info span {
  font-size: 0.95rem;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cme-preview-desc {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  padding: 20px;
  text-align: left;
  margin-top: 20px;
}

.cme-preview-desc label {
  display: block;
  font-size: 0.8rem;
  color: #00ff88;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.cme-preview-desc p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 600px) {
  .cme-preview-grid {
    grid-template-columns: 100%;
  }
}

/* Redesign Submit Button */
.cme-submit {
  background: linear-gradient(135deg, #00f2ff 0%, #00ff88 100%) !important;
  color: #000 !important;
  border: none !important;
  box-shadow: 0 0 25px rgba(0, 242, 255, 0.4) !important;
  font-weight: 900 !important;
  text-shadow: none !important;
}

.cme-submit:hover {
  transform: scale(1.05) !important;
  box-shadow: 0 0 40px rgba(0, 242, 255, 0.6) !important;
}

/* v11.31 - NATIVE PREVIEW TOTAL MAKEOVER (DEFINITIVE) */
#event_preview {
  background: rgba(15, 15, 25, 0.8) !important;
  backdrop-filter: blur(25px) !important;
  -webkit-backdrop-filter: blur(25px) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 25px !important;
  padding: 50px 40px !important;
  margin: 40px auto !important;
  max-width: 950px !important;
  color: #fff !important;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6) !important;
  position: relative !important;
  z-index: 10 !important;
}

.event_listing_preview_title {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 20px !important;
  margin-bottom: 40px !important;
  padding-bottom: 30px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  text-align: center !important;
}

.event_listing_preview_title h2 {
  color: #fff !important;
  font-size: 2.2rem !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: 4px !important;
  margin: 10px 0 !important;
  text-shadow: 0 0 20px rgba(0, 242, 255, 0.3) !important;
}

/* Edit & Submit Buttons */
.event-manager-button-edit-listing,
.event-manager-button-submit-listing {
  width: auto !important;
  min-width: 200px !important;
  padding: 16px 35px !important;
  border-radius: 60px !important;
  font-size: 1rem !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  cursor: pointer !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  border: none !important;
  outline: none !important;
}

/* Edit Button Specials */
.event-manager-button-edit-listing {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
}

.event-manager-button-edit-listing:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  transform: translateY(-2px) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
}

/* Submit Button Specials */
.event-manager-button-submit-listing {
  background: linear-gradient(135deg, #00f2ff 0%, #00ff88 100%) !important;
  color: #000 !important;
  box-shadow: 0 10px 30px rgba(0, 242, 255, 0.4) !important;
}

.event-manager-button-submit-listing:hover {
  transform: scale(1.05) translateY(-3px) !important;
  box-shadow: 0 15px 45px rgba(0, 242, 255, 0.6) !important;
}

/* The single event content inside the preview */
.event_listing_preview.single_event_listing {
  background: rgba(255, 255, 255, 0.03) !important;
  border-radius: 15px !important;
  padding: 30px !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
}

