.hero-section {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 2rem 1rem;
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 2px solid var(--glass-border);
  border-radius: 30px;
  padding: 3rem 2rem;
  max-width: 800px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 40px rgba(230, 57, 70, 0.15);
  transform: translateY(0);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(255, 77, 141, 0.25);
}

.badge-love {
  display: inline-block;
  background: rgba(255, 255, 255, 0.8);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  color: var(--sweet-red);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.title-romantic {
  font-family: var(--font-romantic);
  font-size: 3.5rem;
  color: var(--sweet-red);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}

.typing-container {
  font-size: 1.2rem;
  min-height: 3rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  font-weight: 400;
}

.milestones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.milestone-card {
  background: rgba(255, 255, 255, 0.7);
  padding: 1.5rem;
  border-radius: 20px;
  border: 1px solid white;
  transition: all 0.3s ease;
  cursor: pointer;
}

.milestone-card:hover {
  transform: scale(1.03);
  background: white;
}

.icon-glow {
  font-size: 2.2rem;
  color: var(--primary-pink);
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 0 8px rgba(255, 77, 141, 0.6));
}

/* SECTION ARCHIVIO */
.archive-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* NUOVO BOTTONE ARCHIVIO: GLASS & SHIMMER */
.btn-archive-super {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 1.5rem;
  padding: 1rem 2.5rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: #4a1525;
  text-decoration: none;
  border-radius: 50px;
  
  /* Effetto Vetro Trasparente */
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 2px solid rgba(255, 255, 255, 0.9);
  
  /* Ombra morbida e raffinata */
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.12),
              inset 0 0 15px rgba(255, 255, 255, 0.6);
  
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Bagliore di luce che scorre (Shimmer Effect) */
.btn-archive-super::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
  transition: left 0.6s ease;
}

/* HOVER: Elevazione + Colore Rosa Intenso */
.btn-archive-super:hover {
  transform: translateY(-4px) scale(1.03);
  background: rgba(255, 255, 255, 0.85);
  border-color: #ff85a2;
  color: #e63946;
  box-shadow: 0 15px 30px rgba(255, 77, 141, 0.25),
              0 0 15px rgba(255, 133, 162, 0.3);
}

.btn-archive-super:hover::before {
  left: 100%;
}

/* Icona con rotazione al passaggio */
.btn-archive-super i {
  font-size: 1.2rem;
  color: #ff4d8d;
  transition: transform 0.3s ease, color 0.3s ease;
}

.btn-archive-super:hover i {
  transform: translateX(6px) rotate(-10deg);
  color: #e63946;
}

/* ACTIVE (quando viene cliccato) */
.btn-archive-super:active {
  transform: translateY(-1px) scale(0.98);
}

/* KEYFRAMES ANIMAZIONI BOTTONE */
@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(255, 77, 141, 0.7); }
  70% { box-shadow: 0 0 0 20px rgba(255, 77, 141, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 77, 141, 0); }
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.beat-fast {
  animation: heartBeat 1s infinite;
  display: inline-block;
}

@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}

/* Styling per il testo corsivo "Cliccami" */
.click-me-cursive {
  font-family: 'Dancing Script', cursive;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--sweet-red, #e63946);
  font-style: italic;
  letter-spacing: 1px;
  display: inline-block;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-shadow: 1px 1px 2px rgba(255, 133, 162, 0.3);
  position: relative;
}

/* Effetto di sfumatura e bagliore al passaggio del mouse */
.click-me-cursive:hover {
  color: var(--primary-pink, #ff4d8d);
  transform: scale(1.15) rotate(-3deg);
  text-shadow: 0 0 10px rgba(255, 77, 141, 0.6),
               0 0 20px rgba(255, 133, 162, 0.4);
}

/* Piccola sbarretta decorativa / underline animata al passaggio */
.click-me-cursive::after {
  content: ' ';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -2px;
  left: 50%;
  background: linear-gradient(90deg, #ff4d8d, #e63946);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}

.click-me-cursive:hover::after {
  width: 80%;
}