body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(to right, #e0f7fa, #fce4ec);
  overflow-x: hidden;
}

canvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

.container {
  text-align: center;
  padding: 100px 20px;
  color: #333;
}

h1 {
  font-size: 3em;
  margin-bottom: 10px;
}

.cursiva {
  font-family: 'Great Vibes', cursive;
  color: #d63384;
}

.emoji {
  font-size: 1.2em;
}

p {
  font-size: 1.2em;
  line-height: 1.5;
}

.btn {
  margin-top: 30px;
  padding: 15px 30px;
  font-size: 1em;
  background: linear-gradient(45deg, #ff6b6b, #fddb92);
  border: none;
  border-radius: 50px;
  color: white;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 192, 203, 0.5);
  backdrop-filter: blur(4px);
}

.modal-content {
  background-color: #fff0f6;
  margin: 5% auto;
  padding: 30px;
  border: 2px solid #ff99c8;
  width: 90%;
  max-width: 700px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  font-family: 'Poppins', sans-serif;
  color: #5c0067;
  text-align: left;
  position: relative;
  animation: fadeIn 0.4s ease;
}

.modal-content h2 {
  font-family: 'Great Vibes', cursive;
  font-size: 2.2rem;
  color: #d63384;
  margin-bottom: 1rem;
}

.modal-content p {
  font-size: 1rem;
  line-height: 1.8;
}

.close {
  color: #ff4d6d;
  font-size: 2rem;
  font-weight: bold;
  position: absolute;
  right: 20px;
  top: 10px;
  cursor: pointer;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
