:root {
  --color-primary: #b76e79;   /* Rosa canela */
  --color-secondary: #874c62; /* Rosa vino/malva */
  --color-light: #fff9f7;     /* Fondo claro cálido */
  --color-accent: #f2c6c2;    /* Rosa pastel suave */
  --color-text: #4a3b3b;      /* Marrón grisáceo elegante */
  --color-white: #ffffff;
  --color-green: #a8c3a1;     /* Verde acuarela de las hojas */
}
    
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    
    /* Ajustes de tipografía */
    body {
      font-family: 'Open Sans', sans-serif;
      color: var(--color-text);
      line-height: 1.6;
      background-color: var(--color-white);
    }
    
    h1, h2, h3 {
      font-family: 'Great Vibes', cursive;
      font-weight: normal;
      color: var(--color-secondary);
    }
        
    section {
      padding: 4rem 1rem;
      display: none;
    }
    
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
    }
    
    /* Portada inicial */
    .inicio {
      height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      background: linear-gradient(rgba(255, 250, 243, 0.9), rgba(255, 250, 243, 0.9)), 
                  url('https://images.unsplash.com/photo-1519225421980-715cb0215aed?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
      position: relative;
    }
    #boletosNinos{
      color: var(--color-secondary);
      font-weight: bold;
    }
    #boletosAdultos{
      color: var(--color-secondary);
      font-weight: bold;
    }
    .inicio h1 {
      font-size: 4.5rem;
      color: var(--color-secondary);
      margin: 0;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    }
    
    .inicio h2 {
      font-size: 2.5rem;
      color: var(--color-primary);
      margin: 1rem 0;
      font-weight: 300;
    }
    
    .inicio button {
      margin-top: 2rem;
      padding: 1rem 2.5rem;
      font-size: 1.1rem;
      background-color: var(--color-primary);
      color: var(--color-white);
      border: none;
      border-radius: 50px;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(166, 124, 82, 0.3);
    }
    
    .inicio button:hover {
      background-color: var(--color-secondary);
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(111, 78, 55, 0.4);
    }
    
    /* Encabezado principal */
    #principal {
      display: none;
      background: linear-gradient(rgba(255, 250, 243, 0.9), rgba(255, 250, 243, 0.9)), 
                  url('https://images.unsplash.com/photo-1523438885200-e635ba2c371e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1974&q=80') center/cover no-repeat;
      height: 100vh;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 2rem;
    }
    
    #principal h1 {
      font-size: 5rem;
      color: var(--color-secondary);
      margin-bottom: 1rem;
      letter-spacing: 2px;
    }
    
    #principal p {
      font-size: 1.5rem;
      color: var(--color-primary);
      max-width: 600px;
      margin: 0 auto;
    }
    
    /* Imagen romántica */
    .romantic-image {
      width: 100%;
      height: 70vh;
      object-fit: cover;
      object-position: center;
      display: none;
    }
    
    /* Sección de la boda */
    .boda-section {
      background-color: var(--color-light);
      text-align: center;
      position: relative;
    }
    
    .boda-section h2 {
      font-size: 3.5rem;
      color: var(--color-primary);
      margin-bottom: 1.5rem;
    }
    
    .boda-section p {
      font-size: 1.2rem;
      margin-bottom: 1rem;
    }
    
    /* Cuenta regresiva */
    .countdown {
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      margin: 3rem auto;
      flex-wrap: wrap;
    }
    
    .calendar-box {
      background-color: var(--color-white);
      padding: 1.5rem 1rem;
      border: 3px solid var(--color-accent);
      border-radius: 15px;
      width: 110px;
      height: 110px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      font-size: 2rem;
      font-weight: bold;
      color: var(--color-secondary);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      transition: transform 0.3s ease;
    }
    
    .calendar-box:hover {
      transform: translateY(-5px);
    }
    
    .calendar-box span {
      font-size: 1rem;
      margin-top: 0.5rem;
      font-family: 'Open Sans', sans-serif;
      font-weight: normal;
      color: var(--color-primary);
    }
    
    /* Sección de ubicación */
    .location-section {
      text-align: center;
    }
    
    .location-image {
      width: 100%;
      max-width: 800px;
      height: auto;
      border-radius: 15px;
      margin: 2rem auto;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      display: block;
    }
    /* Botones */
    button, .location-btn, .code-form button, .confirmar-reducido, .gift-button {
      background-color: var(--color-primary);
      color: var(--color-white);
      border-radius: 50px;
      transition: all 0.3s ease;
    }
    button:hover, .location-btn:hover, .code-form button:hover, .confirmar-reducido:hover, .gift-button:hover {
      background-color: var(--color-secondary);
      transform: translateY(-3px);
    }

    .location-btn {
      margin-top: 1rem;
      padding: 1rem 2.5rem;
      font-size: 1.1rem;
      background-color: var(--color-primary);
      color: var(--color-white);
      border: none;
      border-radius: 50px;
      cursor: pointer;
      transition: all 0.3s ease;
      display: inline-block;
    }
    
    .location-btn:hover {
      background-color: var(--color-secondary);
      transform: translateY(-3px);
    }
    
    #mapa {
      display: none;
      margin: 2rem auto;
      width: 100%;
      max-width: 100%;
      border-radius: 0;
      overflow: hidden;
      box-shadow: none;
      padding: 0;
    }
    
    #mapa iframe {
      width: 100%;
      height: 400px;
      border: none;
    }
    
    /* Sección de confirmación */
    .confirmation-section {
      text-align: center;
      background-color: var(--color-white);
    }
    
    .confirmation-section h2 {
      font-size: 3rem;
      color: var(--color-primary);
      margin-bottom: 2rem;
    }
    
    .code-form {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      margin: 2rem auto;
      max-width: 500px;
    }
    
    .code-form input {
      padding: 1rem;
      font-size: 1rem;
      width: 100%;
      border: 2px solid var(--color-accent);
      border-radius: 8px;
      background-color: var(--color-light);
    }
    
    .code-form button {
      padding: 1rem 2rem;
      font-size: 1.1rem;
      background-color: var(--color-primary);
      color: var(--color-white);
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
      width: 100%;
    }
    
    .code-form button:hover {
      background-color: var(--color-secondary);
    }
    
    /* Panel de invitados */
    .panel-reducido {
      display: none;
      margin: 2rem auto;
      padding: 2rem;
      background-color: var(--color-light);
      border-radius: 15px;
      max-width: 500px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    }
    
    .panel-reducido h3 {
      color: var(--color-secondary);
      margin-bottom: 1.5rem;
      font-family: 'Open Sans', sans-serif;
      font-weight: 600;
    }
    
    .contador {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin: 1.5rem 0;
    }
    
    .contador label {
      font-size: 1.1rem;
      color: var(--color-secondary);
      flex: 1;
      text-align: left;
    }
    
    .contador button {
      width: 40px;
      height: 40px;
      font-size: 1.2rem;
      background-color: var(--color-primary);
      color: var(--color-white);
      border: none;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }
    
    .contador button:hover {
      background-color: var(--color-secondary);
    }
    
    .contador span {
      min-width: 40px;
      text-align: center;
      font-size: 1.2rem;
      font-weight: bold;
    }
    
    .confirmar-reducido {
      margin-top: 2rem;
      padding: 1rem 2rem;
      font-size: 1.1rem;
      background-color: var(--color-primary);
      color: var(--color-white);
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
      width: 100%;
    }
    
    .confirmar-reducido:hover {
      background-color: var(--color-secondary);
    }
    
    /* Info box */
    .info-box {
      display: none;
      margin: 2rem auto;
      padding: 2rem;
      background-color: var(--color-light);
      border-radius: 15px;
      max-width: 500px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.05);
      text-align: left;
    }
    
    .info-box p {
      margin: 1rem 0;
      font-size: 1.1rem;
      color: var(--color-text);
    }
    
    .info-box p strong {
      color: var(--color-secondary);
      font-weight: 600;
    }
    
    .codigo-form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin: 2rem 0;
    }
    
    .codigo-form button {
      padding: 1rem;
      font-size: 1.1rem;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .codigo-form button[type="submit"] {
      background-color: var(--color-primary);
      color: var(--color-white);
    }
    
    .codigo-form button[type="submit"]:hover {
      background-color: var(--color-secondary);
    }
    
    .codigo-form button[onclick="mostrarPanelReducido()"] {
      background-color: transparent;
      color: var(--color-primary);
      border: 2px solid var(--color-primary);
    }
    
    .codigo-form button[onclick="mostrarPanelReducido()"]:hover {
      background-color: rgba(166, 124, 82, 0.1);
    }
    
    .decline-btn {
      background-color: #888; /* Un color gris neutro */
      color: var(--color-white);
    }

    .decline-btn:hover {
      background-color: #666;
    }

    /* Botón de alergias */
    .allergy-btn {
      width: 100%;
      margin-top: 1rem;
      padding: 1rem;
      font-size: 1.1rem;
      background-color: transparent;
      color: var(--color-secondary);
      border: 2px solid var(--color-secondary);
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .allergy-btn:hover {
      background-color: rgba(111, 78, 55, 0.1);
    }

    /* Modal de Alergias */
    .allergy-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.7);
      display: none; /* Oculto por defecto */
      justify-content: center;
      align-items: center;
      z-index: 9990;
      padding: 1rem;
    }

    .allergy-content {
      background-color: var(--color-light);
      padding: 2rem;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.2);
      width: 100%;
      max-width: 500px;
      text-align: center;
    }

    .allergy-content h3 {
      color: var(--color-secondary);
      font-family: 'Open Sans', sans-serif;
      margin-bottom: 1rem;
    }

    .allergy-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
      margin: 1.5rem 0;
      text-align: left;
    }

    .allergy-list label {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 1rem;
    }

    .other-allergy {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 1.5rem;
    }

    .other-allergy input[type="text"] {
      flex: 1;
      padding: 0.5rem;
      border: 1px solid var(--color-accent);
      border-radius: 5px;
    }

    .allergy-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
    }

    .allergy-buttons button {
      padding: 0.8rem 1.5rem;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      background-color: var(--color-primary);
      color: var(--color-white);
    }

    .allergy-buttons .close-btn {
      background-color: #888;
    }

    /* Galería de momentos */
    .galeria-momentos {
      background-color: var(--color-white);
    }
    
    .galeria-momentos h2 {
      font-size: 3.5rem;
      color: var(--color-primary);
      margin-bottom: 3rem;
    }
    
    .cards-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2rem;
      margin-top: 2rem;
    }
    
    .card {
      background-color: var(--color-white);
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      overflow: hidden;
      width: 100%;
      max-width: 350px;
      transition: all 0.3s ease;
      position: relative;
    }
    
    .card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }
    
    .card img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    
    .card:hover img {
      transform: scale(1.05);
    }
    
    .card-content {
      padding: 1.5rem;
    }
    
    .card h3 {
      font-size: 1.8rem;
      color: var(--color-secondary);
      margin-bottom: 0.5rem;
    }
    
    .card p {
      font-size: 1rem;
      color: var(--color-text);
      margin-bottom: 1rem;
    }
    
    /* Footer */
    footer {
      padding: 3rem 1rem;
      background-color: var(--color-secondary);
      color: var(--color-white);
      text-align: center;
      display: none;
    }
    
    footer p {
      font-size: 1.5rem;
      font-family: 'Great Vibes', cursive;
    }
    
    /* Control de música */
    .music-controls {
      position: fixed;
      top: 30px;
      right: 30px;
      z-index: 1000;
      opacity: 0;
      transform: translateY(-20px);
      transition: all 0.5s ease;
      display: none;
    }
    
    .music-controls.visible {
      opacity: 1;
      transform: translateY(0);
    }
    
    .music-btn {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
      border: none;
      color: var(--color-white);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 5px 20px rgba(0,0,0,0.2);
      transition: all 0.3s ease;
      position: relative;
    }
    
    .music-btn:hover {
      transform: scale(1.1);
    }
    
    .music-note {
      font-size: 24px;
    }
    
    .sound-waves {
      display: flex;
      align-items: center;
      gap: 4px;
      margin-left: 8px;
      height: 24px;
    }
    
    .bar {
      width: 4px;
      background-color: var(--color-white);
      border-radius: 2px;
      animation: equalize 1.5s infinite ease-in-out;
    }
    
    .bar:nth-child(1) { height: 8px; animation-delay: 0.1s; }
    .bar:nth-child(2) { height: 12px; animation-delay: 0.3s; }
    .bar:nth-child(3) { height: 16px; animation-delay: 0.5s; }
    
    @keyframes equalize {
      0%, 100% { transform: scaleY(0.5); }
      50% { transform: scaleY(1.5); }
    }
    
    .music-btn.paused .bar {
      animation: none;
      opacity: 0.5;
    }
    
    .music-btn.paused::after {
      content: "";
      position: absolute;
      width: 30px;
      height: 3px;
      background-color: var(--color-white);
      transform: rotate(45deg);
    }
    
    /* Animaciones de scroll */
    .scroll-animation {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }
    
    .scroll-animation.animated {
      opacity: 1;
      transform: translateY(0);
    }
    
    /* Responsive */
    @media (max-width: 768px) {
      .inicio h1, #principal h1 {
        font-size: 3rem;
      }
      
      .boda-section h2, .galeria-momentos h2 {
        font-size: 2.5rem;
      }
      
      .countdown {
        gap: 1rem;
      }
      
      .calendar-box {
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
      }
      
      .card {
        max-width: 100%;
      }
    }

    .dress-code-section {
    background-color: var(--color-white);
    text-align: center;
  }

  .dress-code-simple {
    max-width: 500px;
    margin: 0 auto;
    padding: 1.5rem;
    background-color: var(--color-light);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }

  .check-icon {
    color: var(--color-primary);
    font-size: 1.5rem;
    margin-right: 0.5rem;
    vertical-align: middle;
  }

  .dress-code-simple p:first-child {
    font-size: 1.3rem;
    color: var(--color-secondary);
    margin-bottom: 1rem;
    font-weight: 600;
  }

  .dress-code-note {
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.6;
  }
  .mui-go42p8 {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 1em;
    height: 1em;
    display: inline-block;
    fill: currentColor;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    font-size: 1.5rem;
    font-size: 2rem;
    margin-bottom: 24px;
    color: black;
}
.dress-code {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 4em;
    height: 4em;
    display: inline-block;
    fill: currentColor;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    font-size: 1.5rem;
    font-size: 2rem;
    margin-bottom: 24px;
    color: black;
}
  @media (max-width: 768px) {
    .dress-code-simple {
      padding: 1rem;
    }
  }

  /*Mesa de regalos styles */
  .gift-section {
    background-color: var(--color-white);
  }
  
  .gift-section .subtitle {
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 2rem;
    font-style: italic;
  }
  
  .gift-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin: 2rem 0;
  }
  
  .gift-card {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    display: flex;
    background-color: var(--color-light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
  }
  
  .gift-card:hover {
    transform: translateY(-5px);
  }
  
  .gift-logo {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-white);
    border-right: 1px solid #eee;
  }
  
  .gift-logo img {
    width: 100px;
    height: auto;
    object-fit: contain;
  }
  
  .gift-info {
    padding: 1.5rem;
    flex: 1;
  }
  
  .gift-info h3 {
    font-size: 1.3rem;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
    font-family: 'Open Sans', sans-serif;
  }
  
  .gift-info p {
    font-size: 0.9rem;
    color: var(--color-text);
    margin-bottom: 1.5rem;
  }
  
  .gift-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background-color: var(--color-primary);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
  }
  
  .gift-button:hover {
    background-color: var(--color-secondary);
  }
  
  .amazon-card .gift-button {
    background-color: #FF9900;
  }
  
  .amazon-card .gift-button:hover {
    background-color: #e88a00;
  }
  
  .liverpool-card .gift-button {
    background-color: #e10098;
  }
  
  .liverpool-card .gift-button:hover {
    background-color: #e10098;
  }
  
  .gift-note {
    text-align: center;
    margin-top: 2rem;
    font-style: italic;
    color: var(--color-primary);
  }
  
  @media (max-width: 768px) {
    .gift-card {
      flex-direction: column;
    }
    
    .gift-logo {
      border-right: none;
      border-bottom: 1px solid #eee;
    }
    
    .gift-logo img {
      width: 80px;
    }
  }
  
/* Estilos para el itinerario */
.itinerary-section {
  background-color: var(--color-light);
  padding: 2rem 1rem;
}

.itinerary-section .subtitle {
  font-size: 1.1rem;
  color: var(--color-primary);
  margin-bottom: 2rem;
  text-align: center;
  font-style: italic;
}

.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 80px; /* más espacio para hora, punto y línea */
}


.timeline-event {
  position: relative;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: flex-start;
}

  
.event-time {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 60px;
  font-weight: 600;
  color: var(--color-secondary);
  font-size: 0.9rem;
  text-align: center;
  z-index: 1;
}

.event-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 2px solid var(--color-white);
  box-shadow: 0 0 0 2px var(--color-primary);
  margin-bottom: 8px; /* espacio entre el punto y la hora */
}

.timeline::before {
  content: '';
  position: absolute;
  left: 51px; /* posición de la línea vertical */
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-accent);
  z-index: 0; /* detrás de los puntos */
}

.event-card {
  background: var(--color-white);
  border-radius: 10px;
  padding: 1.2rem;
  box-shadow: 0 3px 15px rgba(0,0,0,0.05);
  margin-left: 10px;
  flex: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-event:hover .event-card {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.event-card h3 {
  color: var(--color-secondary);
  margin-bottom: 0.3rem;
  font-size: 1.2rem;
}

.event-card p {
  color: var(--color-text);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.event-note {
  font-size: 0.8rem;
  color: var(--color-primary);
  font-style: italic;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px dashed var(--color-accent);
}

/* Responsivo */
@media (max-width: 768px) {
  .timeline {
    padding-left: 30px;
  }

  .timeline::before {
    left: 20px;
  }

  .event-time {
    left: -10px;
    width: 50px;
    font-size: 0.85rem;
  }



  .event-card {
    margin-left: 10px;
    font-size: 0.85rem;
  }
}

/* Hacker Warning Overlay - Efecto TV descompuesta */
.hacker-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  color: white;
  display: none; /* Oculto por defecto */
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 9999; /* Siempre encima de todo */
  font-family: 'Courier New', Courier, monospace;
  overflow: hidden;
}

/* Capa de estática y líneas */
.hacker-overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(0deg, rgba(0,0,0,0) 0, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0) 100%);
  background-size: auto 4px;
  opacity: 0.4;
  animation: scanlines 0.5s linear infinite;
}

.hacker-content .warning-icon {
  font-size: 5rem;
  display: block;
  margin-bottom: 1.5rem;
  animation: glitch-icon 1.5s linear infinite;
}

.hacker-content p {
  font-size: 1.2rem;
  animation: glitch-text 2s linear infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

@keyframes scanlines {
  0% { background-position: 0 0; }
  100% { background-position: 0 100%; }
}

@keyframes glitch-icon {
  0%, 100% { text-shadow: -1.5px -1.5px 0 #ff00c1, 1.5px 1.5px 0 #00fff9; }
  25% { text-shadow: 1.5px 1.5px 0 #ff00c1, -1.5px -1.5px 0 #00fff9; }
  50% { text-shadow: 1.5px -1.5px 0 #ff00c1, -1.5px 1.5px 0 #00fff9; }
  75% { text-shadow: -1.5px 1.5px 0 #ff00c1, 1.5px -1.5px 0 #00fff9; }
}

@keyframes glitch-text {
  0%, 100% { transform: translateX(0); }
  10% { transform: translateX(-3px); }
  20% { transform: translateX(3px); }
  30%, 80% { transform: translateX(0); }
  85% { transform: translateX(5px); }
  95% { transform: translateX(-5px); }
}

/* Secciones claras */
section {
  background-color: var(--color-light);
  border-radius: 12px;
  margin: 2rem auto;
  padding: 3rem 1.5rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* Bordes decorativos sutiles */
.calendar-box, .event-card, .panel-reducido, .info-box, .gift-card {
  border: 2px solid var(--color-accent);
  border-radius: 15px;
}

/* Animaciones suaves */
.scroll-animation {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.scroll-animation.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive ajustes */
@media (max-width: 768px) {
  h1, #principal h1 {
    font-size: 3rem;
  }
  .boda-section h2, .galeria-momentos h2 {
    font-size: 2.2rem;
  }
}