    * { margin: 0; padding: 0; box-sizing: border-box; }
    
    body {
      font-family: 'Graphik', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      background: #f8f9fa;
      min-height: 100vh;
    }

    /* Wrapper con gradient que contiene el wizard */
    .wizard-wrapper {
      background: #1F2548 url('../../images/figma/bg-wrapers.png') no-repeat center center fixed;
      background-size: cover;
      padding: 2rem 1rem 3rem;
      min-height: calc(100vh - 200px);
      position: relative;
      overflow: hidden;
    }

    /* ==========================================================================
       FLOATING CARDS - Animaciones elegantes (Desktop only)
       ========================================================================== */
    .floating-cards {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 1;
    }

    .floating-card {
      position: absolute;
      width: 320px; /* Mucho más grandes como en Figma */
      height: auto;
      opacity: 0.8; /* Más visibles como en Figma */
      filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5)); /* Sombra más real */
      will-change: transform;
      animation-timing-function: ease-in-out;
      animation-iteration-count: infinite;
      animation-direction: alternate;
    }

    /* LADO IZQUIERDO */

    /* Card 4: Explorador (Atrás - Arriba Izquierda) */
    .floating-card-4 {
      top: 5%;
      left: -2%;
      z-index: 2;
      transform: rotate(-10deg);
      animation: float-left-back 7s;
    }

    /* Card 3: Hechicera (Adelante - Abajo Izquierda) */
    .floating-card-3 {
      top: 32%;
      left: 4%;
      z-index: 4; /* Sobre el explorador */
      transform: rotate(5deg);
      animation: float-left-front 6s;
    }

    /* LADO DERECHO */

    /* Card 1: Criatura (Atrás - Arriba Derecha) */
    .floating-card-1 {
      top: 8%;
      right: -2%;
      z-index: 2;
      transform: rotate(8deg);
      animation: float-right-back 7.5s;
    }

    /* Card 2: Pájaros (Adelante - Abajo Derecha) */
    .floating-card-2 {
      top: 38%;
      right: 4%;
      z-index: 4; /* Sobre la criatura */
      transform: rotate(-6deg);
      animation: float-right-front 6.5s;
    }

    /* Animaciones personalizadas para mantener el ángulo del Figma */
    @keyframes float-left-back {
      0%, 100% { transform: translateY(0) rotate(-10deg); }
      50% { transform: translateY(-15px) rotate(-11deg); }
    }

    @keyframes float-left-front {
      0%, 100% { transform: translateY(0) rotate(5deg); }
      50% { transform: translateY(-20px) rotate(6deg); }
    }

    @keyframes float-right-back {
      0%, 100% { transform: translateY(0) rotate(8deg); }
      50% { transform: translateY(-15px) rotate(9deg); }
    }

    @keyframes float-right-front {
      0%, 100% { transform: translateY(0) rotate(-6deg); }
      50% { transform: translateY(-20px) rotate(-7deg); }
    }

    /* Wizard container con z-index elevado para estar sobre las cards */
    .wizard-container {
      position: relative;
      z-index: 10;
    }

    /* Accesibilidad: Respetar preferencia de movimiento reducido */
    @media (prefers-reduced-motion: reduce) {
      .floating-card {
        animation: none !important;
        opacity: 0.4;
      }
    }

    /* Tablet: Cards más pequeñas y menos opacas */
    @media (min-width: 768px) and (max-width: 1199px) {
      .floating-card {
        width: 220px;
        opacity: 0.5;
      }
      .floating-card-4 { left: -5%; }
      .floating-card-1 { right: -5%; }
    }

    /* Mobile: Ocultar cards para performance y limpieza */
    @media (max-width: 767px) {
      .floating-cards {
        display: none;
      }
    }
    
    .wizard-container {
      max-width: 900px;
      margin: 0 auto;
      background: white;
      border-radius: 20px;
      /* Sombras combinadas: Profundidad oscura + Resplandor Rosa sutil (coherencia index) */
      box-shadow: 
        0 14px 35px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(206, 70, 108, 0.25);
      overflow: hidden;
      position: relative;
      z-index: 10;
      /* Animación de respiración del glow rosa */
      animation: wizard-glow 8s ease-in-out infinite;
    }

    @keyframes wizard-glow {
      0%, 100% { 
        box-shadow: 0 14px 35px rgba(0, 0, 0, 0.3), 0 0 30px rgba(206, 70, 108, 0.2); 
      }
      50% { 
        box-shadow: 0 14px 35px rgba(0, 0, 0, 0.3), 0 0 60px rgba(206, 70, 108, 0.4); 
      }
    }
    
    .wizard-header {
      background: #16224A;
      color: white;
      padding: 3rem 2rem 2.5rem;
      text-align: center;
      position: relative;
      border-bottom: 4px solid #EB974A;
    }

    .wizard-header h1 {
      font-family: 'Graphik', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      font-size: 36px;
      font-weight: 700;
      letter-spacing: -0.5px;
      margin-bottom: 0.5rem;
      line-height: 1.2;
    }

    .wizard-header p {
      color: rgba(255, 255, 255, 0.8);
      font-size: 1.1rem;
      max-width: 600px;
      margin: 0 auto;
      opacity: 1;
    }
    
    /* Progress Steps */
    .progress-steps {
      display: flex;
      justify-content: space-between;
      padding: 2rem 2rem 1rem;
      background: #f8f9fa;
      border-bottom: 2px solid #e9ecef;
    }
    
    .step {
      flex: 1;
      text-align: center;
      position: relative;
    }
    
    .step:not(:last-child)::after {
      content: '';
      position: absolute;
      top: 20px;
      left: 60%;
      width: 80%;
      height: 2px;
      background: #dee2e6;
      z-index: 0;
    }

    .step.active:not(:last-child)::after {
      background: linear-gradient(90deg, #CE466C, #dee2e6);
    }

    .step.completed:not(:last-child)::after {
      background: #28a745;
    }

    .step-number {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #dee2e6;
      color: #6c757d;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      margin-bottom: 0.5rem;
      position: relative;
      z-index: 1;
      transition: all 0.3s ease;
    }

    .step.active .step-number {
      background: #CE466C;
      color: white;
      transform: scale(1.1);
      box-shadow: 0 0 15px rgba(206, 70, 108, 0.4);
    }

    .step.completed .step-number {
      background: #28a745;
      color: white;
      box-shadow: 0 0 10px rgba(40, 167, 69, 0.2);
    }

    .step.completed .step-number::before {
      content: '✓';
    }

    .step-label {
      font-size: 0.85rem;
      color: #6c757d;
      font-weight: 500;
    }

    .step.active .step-label {
      color: #CE466C;
      font-weight: 600;
    }
    
    /* Form Content */
    .wizard-content {
      padding: 3rem 2rem;
      min-height: 500px;
    }
    
    .step-content {
      display: none;
    }
    
    .step-content.active {
      display: block;
      animation: fadeIn 0.5s ease;
    }
    
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    .step-title {
      font-size: 1.75rem;
      color: #16224A; /* Azul oscuro del index */
      margin-bottom: 0.5rem;
      font-weight: 700;
      letter-spacing: -0.5px;
    }
    
    .step-subtitle {
      color: #6c757d;
      margin-bottom: 2rem;
      font-size: 1rem;
    }
    
    .form-group {
      margin-bottom: 1.5rem;
    }
    
    .form-row {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
    }
    
    label {
      display: block;
      margin-bottom: 0.5rem;
      color: #333;
      font-weight: 500;
      font-size: 0.95rem;
    }
    
    .required {
      color: #dc3545;
      margin-left: 0.25rem;
    }
    
    input, select, textarea {
      width: 100%;
      padding: 0.75rem;
      border: 2px solid #e9ecef;
      border-radius: 8px;
      font-size: 1rem;
      transition: all 0.3s ease;
      font-family: inherit;
    }
    
    input:focus, select:focus, textarea:focus {
      outline: none;
      border-color: #ce466c;
      box-shadow: 0 0 0 3px rgba(206, 70, 108, 0.1);
    }
    
    textarea {
      resize: vertical;
      min-height: 100px;
    }
    
    .input-hint {
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.7); /* Mejorado contraste para fondo oscuro */
      margin-top: 0.25rem;
    }
    
    /* BUG FIX 9 Dic 2025: Custom select para mostrar banderas correctamente */
    
    /* Twemoji: Asegura que los emojis de bandera se vean bien */
    img.emoji {
      height: 1.2em;
      width: 1.2em;
      margin: 0 0.2em 0 0;
      vertical-align: -0.15em;
      display: inline-block;
    }
    
    .custom-select-wrapper-pais {
      position: relative;
      width: 100%;
    }
    
    .custom-select-trigger-pais {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.75rem;
      background: white;
      border: 2px solid #e9ecef;
      border-radius: 8px;
      cursor: pointer;
      font-size: 1rem;
      color: #333;
      transition: all 0.3s ease;
      min-height: 48px;
    }
    
    .custom-select-trigger-pais:hover {
      border-color: #3B5BA1;
    }
    
    .custom-select-wrapper-pais.open .custom-select-trigger-pais {
      border-color: #3B5BA1;
      box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    }
    
    .custom-select-trigger-pais .arrow {
      font-size: 0.7rem;
      margin-left: 0.5rem;
      color: #666;
      transition: transform 0.3s;
    }
    
    .custom-select-wrapper-pais.open .arrow {
      transform: rotate(180deg);
    }
    
    .custom-options-pais {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: white;
      border: 2px solid #e9ecef;
      border-radius: 8px;
      margin-top: 4px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      z-index: 2000;
      max-height: 300px;
      overflow-y: auto;
    }
    
    .custom-select-wrapper-pais.open .custom-options-pais {
      display: block;
    }
    
    .custom-option-pais {
      padding: 0.75rem 1rem;
      cursor: pointer;
      color: #333;
      transition: background 0.2s;
      font-size: 1rem;
    }
    
    .custom-option-pais:hover {
      background: #f0f4ff;
    }
    
    .custom-option-pais.selected {
      background: #e7f3ff;
    }
    
    /* Custom Select de Juegos (similar a países pero con imágenes) */
    .custom-select-wrapper-juego {
      position: relative;
      width: 100%;
    }
    
    .custom-select-trigger-juego {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.75rem 1rem;
      background: white;
      border: 2px solid #dee2e6;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.2s;
      min-height: 48px;
    }
    
    .custom-select-trigger-juego:hover {
      border-color: #3B5BA1;
    }
    
    .custom-select-wrapper-juego.open .custom-select-trigger-juego {
      border-color: #3B5BA1;
      box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    }
    
    .custom-select-trigger-juego .arrow {
      transition: transform 0.2s;
      color: #6c757d;
      font-size: 0.75rem;
    }
    
    .custom-select-wrapper-juego.open .arrow {
      transform: rotate(180deg);
    }
    
    .custom-select-trigger-juego #juego-select-text {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      flex: 1;
    }
    
    .custom-select-trigger-juego #juego-select-text img {
      width: 32px;
      height: 32px;
      object-fit: cover;
      border-radius: 4px;
      flex-shrink: 0;
    }
    
    .custom-select-options-juego {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: white;
      border: 2px solid #dee2e6;
      border-top: none;
      border-radius: 0 0 8px 8px;
      max-height: 300px;
      overflow-y: auto;
      z-index: 1000;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
      margin-top: 2px;
    }
    
    .custom-select-wrapper-juego.open .custom-select-options-juego {
      display: block;
    }
    
    .custom-option-juego {
      padding: 0.75rem 1rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      transition: background 0.2s;
      border-bottom: 1px solid #f0f0f0;
    }
    
    .custom-option-juego:last-child {
      border-bottom: none;
    }
    
    .custom-option-juego:hover {
      background: #f8f9fa;
    }
    
    .custom-option-juego.selected {
      background: #e7f3ff;
    }
    
    .custom-option-juego .juego-thumb {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      background-color: #f1f3f5;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.35rem;
      flex-shrink: 0;
      border: 1px solid #e0e0e0;
      overflow: hidden;
      position: relative;
    }
    
    .custom-option-juego .juego-thumb-emoji {
      color: #555;
      font-size: 1.4rem;
    }
    
    .custom-option-juego .juego-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    
    .custom-option-juego .juego-text {
      flex: 1;
      font-weight: 500;
      color: #333;
    }
    
    .custom-option-juego .juego-text-title {
      font-weight: 600;
      color: #1F2548;
    }
    
    .optgroup-label-pais {
      padding: 0.5rem 1rem;
      font-weight: 600;
      color: #3B5BA1;
      background: #f8f9fa;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    
    /* Map */
    #map {
      height: 350px;
      border-radius: 12px;
      margin-top: 1rem;
      border: 2px solid #e9ecef;
    }
    
    .map-hint {
      background: #e3f2fd;
      padding: 1rem;
      border-radius: 8px;
      margin-top: 1rem;
      border-left: 4px solid #2196f3;
    }
    
    /* Review Section */
    .review-section {
      background: #f8f9fa;
      padding: 1.5rem;
      border-radius: 12px;
      margin-bottom: 1.5rem;
    }
    
    .review-section h3 {
      color: #1F2548;
      margin-bottom: 1rem;
      font-size: 1.25rem;
    }
    
    .review-item {
      display: flex;
      padding: 0.75rem 0;
      border-bottom: 1px solid #dee2e6;
    }
    
    .review-item:last-child {
      border-bottom: none;
    }
    
    .review-label {
      font-weight: 600;
      color: #495057;
      min-width: 180px;
    }
    
    .review-value {
      color: #212529;
      flex: 1;
    }
    
    /* Checkboxes */
    .checkbox-group {
      background: #f8f9fa;
      padding: 1.5rem;
      border-radius: 12px;
      margin-bottom: 1.5rem;
    }
    
    .checkbox-item {
      display: flex;
      align-items: start;
      gap: 1rem;
      padding: 1rem;
      background: white;
      border-radius: 8px;
      margin-bottom: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      border: 2px solid #e9ecef;
    }
    
    .checkbox-item:hover {
      border-color: #3B5BA1;
      transform: translateX(5px);
    }
    
    .checkbox-item input[type="checkbox"] {
      width: 20px;
      height: 20px;
      cursor: pointer;
      margin-top: 2px;
    }
    
    .checkbox-content {
      flex: 1;
    }
    
    .checkbox-content strong {
      display: block;
      color: #1F2548;
      margin-bottom: 0.25rem;
    }
    
    .checkbox-content small {
      color: #6c757d;
      line-height: 1.5;
    }
    
    /* Buttons */
    .wizard-actions {
      display: flex;
      justify-content: space-between;
      padding: 2rem;
      background: #f8f9fa;
      border-top: 2px solid #e9ecef;
      gap: 1rem;
    }
    
    .btn {
      padding: 0.875rem 2rem;
      border: none;
      border-radius: 8px; /* Radio de esquina 8 como en Figma */
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.6rem;
      text-transform: none;
      letter-spacing: -0.2px;
    }

    .btn-primary {
      background: linear-gradient(180deg, #eb7a9a 0%, #ce466c 15%, #f82d98 100%); /* Gradiente vertical Figma */
      color: white;
      flex: 1;
      box-shadow: 0 4px 15px rgba(206, 70, 108, 0.3);
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 25px rgba(206, 70, 108, 0.45);
      filter: brightness(1.1);
    }

    .btn-primary:active {
      transform: translateY(-1px);
    }

    .btn-secondary {
      background: rgba(206, 70, 108, 0.05);
      color: #ce466c;
      border: 2px solid rgba(206, 70, 108, 0.2);
      border-radius: 8px; /* Mantener coherencia con primary */
    }

    .btn-secondary:hover {
      background: rgba(206, 70, 108, 0.1);
      border-color: #ce466c;
      transform: translateY(-2px);
    }
    
    /* Success Message */
    .success-message {
      text-align: center;
      padding: 3rem 2rem;
    }
    
    .success-icon {
      font-size: 5rem;
      margin-bottom: 1.5rem;
    }
    
    .success-message h2 {
      color: #28a745;
      margin-bottom: 1rem;
      font-size: 2rem;
    }
    
    .success-message p {
      color: #6c757d;
      font-size: 1.1rem;
      line-height: 1.6;
      margin-bottom: 2rem;
    }
    
    .alert {
      padding: 1rem;
      border-radius: 8px;
      margin-bottom: 1.5rem;
    }
    
    .alert-error {
      background: #f8d7da;
      color: #721c24;
      border-left: 4px solid #dc3545;
    }
    
    .alert-info {
      background: #d1ecf1;
      color: #0c5460;
      border-left: 4px solid #17a2b8;
    }
    
    /* Responsive */
    @media (max-width: 768px) {
      body { padding: 0; } 
      .wizard-wrapper { padding: 1rem 0.75rem 2rem; } /* Espacio lateral para que no pegue al borde */
      .wizard-container { border-radius: 12px; } /* Radio sutil en mobile */
      
      .wizard-header { 
        padding: 2.5rem 1rem 2rem; 
      }
      .wizard-header h1 { 
        font-size: 1.75rem; 
      }
      .wizard-header p {
        font-size: 1rem;
      }

      .wizard-content { 
        padding: 1.5rem 1rem; 
        min-height: auto;
      }

      .progress-steps { 
        padding: 1rem 0.5rem; 
      }
      .step-label { 
        display: none; /* Ocultar etiquetas en mobile para que no choquen */
      }
      .step-number {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
      }
      .step:not(:last-child)::after {
        top: 16px;
      }

      .form-row { grid-template-columns: 1fr; gap: 1rem; }
      
      .wizard-actions { 
        flex-direction: column-reverse; 
        padding: 1.5rem 1rem;
        gap: 0.75rem;
      }
      .btn { 
        width: 100%; 
        justify-content: center; 
        padding: 1rem;
        font-size: 1.1rem; /* Botones más grandes para touch */
      }

      .step-title {
        font-size: 1.5rem;
      }
    }

    /* Pantallas extra pequeñas */
    @media (max-width: 380px) {
      .wizard-header h1 { font-size: 1.5rem; }
      .step-number { width: 28px; height: 28px; font-size: 0.8rem; }
      .step:not(:last-child)::after { top: 14px; }
    }
    
    .loading {
      display: inline-block;
      width: 20px;
      height: 20px;
      border: 3px solid rgba(255,255,255,0.3);
      border-radius: 50%;
      border-top-color: white;
      animation: spin 0.8s linear infinite;
    }
    
    @keyframes spin {
      to { transform: rotate(360deg); }
    }
    
    /* Checkbox inline para políticas */
    .checkbox-inline {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.6rem 0.8rem;
      background: white;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.2s ease;
      font-size: 0.9rem;
      border: 1px solid #e9ecef;
    }
    
    .checkbox-inline:hover {
      background: #f8f9fa;
      border-color: #ce466c;
    }

    .checkbox-inline input[type="checkbox"] {
      width: 18px;
      height: 18px;
      cursor: pointer;
      accent-color: #ce466c;
    }
    
    .checkbox-inline input[type="checkbox"]:checked + span,
    .checkbox-inline:has(input:checked) {
      font-weight: 500;
    }
    
    .policy-section h3 {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: #16224A; /* Azul oscuro del index */
    }

    .review-section h3 {
      color: #CE466C; /* Rosa para títulos de sección en revisión */
      border-bottom: 2px solid rgba(206, 70, 108, 0.1);
      padding-bottom: 0.5rem;
      margin-bottom: 1.5rem;
    }
    
    .review-section .badge {
      display: inline-block;
      padding: 0.3rem 0.6rem;
      background: #e9ecef;
      border-radius: 20px;
      font-size: 0.8rem;
      color: #495057;
    }
    
    /* Sistema de Notificación de Errores */
    .error-notification {
      position: fixed;
      top: 20px;
      right: 20px;
      max-width: 400px;
      background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
      color: white;
      padding: 1rem 1.5rem;
      border-radius: 12px;
      box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
      z-index: 10000;
      animation: slideIn 0.4s ease;
      cursor: pointer;
      display: none;
    }
    
    .error-notification.show {
      display: block;
    }
    
    .error-notification:hover {
      transform: scale(1.02);
      box-shadow: 0 10px 30px rgba(220, 53, 69, 0.5);
    }
    
    .error-notification .error-icon {
      font-size: 1.5rem;
      margin-right: 0.75rem;
    }
    
    .error-notification .error-content {
      display: flex;
      align-items: center;
    }
    
    .error-notification .error-text {
      flex: 1;
    }
    
    .error-notification .error-title {
      font-weight: 700;
      font-size: 1rem;
      margin-bottom: 0.25rem;
    }
    
    .error-notification .error-message {
      font-size: 0.9rem;
      opacity: 0.95;
    }
    
    .error-notification .error-hint {
      font-size: 0.8rem;
      opacity: 0.8;
      margin-top: 0.5rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    
    .error-notification .close-btn {
      position: absolute;
      top: 8px;
      right: 12px;
      background: none;
      border: none;
      color: white;
      font-size: 1.2rem;
      cursor: pointer;
      opacity: 0.7;
    }
    
    .error-notification .close-btn:hover {
      opacity: 1;
    }
    
    @keyframes slideIn {
      from { transform: translateX(100%); opacity: 0; }
      to { transform: translateX(0); opacity: 1; }
    }
    
    @keyframes slideOut {
      from { transform: translateX(0); opacity: 1; }
      to { transform: translateX(100%); opacity: 0; }
    }
    
    .error-notification.hiding {
      animation: slideOut 0.3s ease forwards;
    }
    
    /* Campo con error resaltado */
    .field-error {
      animation: shake 0.5s ease, pulseError 2s ease infinite;
      border-color: #dc3545 !important;
      box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.25) !important;
    }
    
    @keyframes shake {
      0%, 100% { transform: translateX(0); }
      20%, 60% { transform: translateX(-5px); }
      40%, 80% { transform: translateX(5px); }
    }
    
    @keyframes pulseError {
      0%, 100% { box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.25); }
      50% { box-shadow: 0 0 0 6px rgba(220, 53, 69, 0.15); }
    }
