
body {
  margin: 0;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #631562, #8a0013);
  
}


/* Center card */
.container {
  position: relative;
  z-index: 10;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: transparent;
  text-align: center;
}

h1 {
    font-family: Pacifico;
  color: #e9dbe3;
  margin-bottom: 60px;
  font-size: 50px;
}

/* Buttons */
.buttons button,
#goSite {
  padding: 12px 22px;
  margin: 8px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
}

#yes {
  background: #ff4d6d;
  color: white;
}

#maybe {
  background: #ffc2d1;
}

#no {
  background: #dddddd;
  position: relative;
}

#goSite {
  margin-top: 20px;
  background: white;
  color: #ff4d6d;
  display: none;
}

button:hover {
  transform: scale(1.1);
}

/* Floating hearts */
.heart {
  position: absolute;
  font-size: 22px;
  animation: floatUp 4s linear forwards;
}
.hearts-bg{
position: fixed;       /* stick to screen */
  inset: 0;              /* top:0 left:0 right:0 bottom:0 */
  width: 100%;
  height: 100dvh;        /* mobile safe height */
  overflow: hidden;      /* prevent scroll */
  z-index: -1;           /* behind everything */
  pointer-events: none; 
}
@keyframes floatUp {
  from { transform: translateY(0); opacity: 1; }
  to { transform: translateY(-800px); opacity: 0; }
}

/* Cupid fly */
.cupid {
  position: absolute;
  font-size: 30px;
  animation: flyAcross 6s linear infinite;
}

@keyframes flyAcross {
  0% { left: -50px; top: 20%; }
  100% { left: 110%; top: 60%; }
}

/* Beating background hearts */
.hearts-bg span {
  position: absolute;
  font-size: 20px;
  animation: beat 1.5s infinite;
  opacity: 0.2;
}

@keyframes beat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.4); }
}


/* INTRO OVERLAY */

.intro-overlay {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(75, 2, 15, 0.95);
  display: flex;
  justify-content: center;

  align-items: center;
  z-index: 20;
  cursor: pointer;

  transition: top 1s ease, opacity 0.2s ease;
}

/* When visible */
.intro-overlay.show {
  top: 0;
}


.intro-content h2 {
  color: rgb(255, 177, 177);
  font-size: 21px;
  animation: pulse 1.4s infinite;
  font-family: 'Poppins', sans-serif;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}
.hidden {
  opacity: 0;
  transition: opacity 1s ease;
}

.container {
  transition: opacity 1s ease;
}

.intro-content {
      border: 3px solid #ff0000;
  background: rgb(186, 0, 0);
  padding: 40px 60px;
  
 
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  animation: floatIn 1s ease;
}

@keyframes floatIn {
  from {
    transform: translateY(-40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.point {
  cursor: pointer; /* Changes to hand icon */
}
