* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  background: #0a0a0a;
  color: #fff;
  overflow: hidden;
  height: 100vh;
  width: 100vw;
}

/* Background Layer */
.bg-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: url("WhatsApp Image 2026-07-05 at 11.22.59.jpeg") center/cover no-repeat;
  filter: grayscale(100%);
  pointer-events: none;
}

/* Photo Rain */
.rain-photo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.photo-drop {
  position: absolute;
  top: -160px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  animation: photoFall linear infinite;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(255, 120, 160, 0.15);
  opacity: 0;
  border: 2px solid rgba(255, 255, 255, 0.08);
}

@keyframes photoFall {
  0% {
    transform: translateY(-160px) scale(0.8);
    opacity: 0;
  }
  8% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  85% {
    opacity: 1;
  }
  100% {
    transform: translateY(110vh) scale(0.8);
    opacity: 0;
  }
}

/* Cute Rain */
.rain-cute {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.cute-drop {
  position: absolute;
  top: -40px;
  font-size: 28px;
  animation: cuteFall linear infinite;
  opacity: 0;
  user-select: none;
}



@keyframes cuteFall {
  0% {
    transform: translateY(-40px) scale(0.5);
    opacity: 0;
  }
  10% {
    opacity: 0.9;
    transform: translateY(0) scale(1);
  }
  85% {
    opacity: 0.9;
  }
  100% {
    transform: translateY(105vh) scale(0.5);
    opacity: 0;
  }
}

/* Overlay */
.overlay {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  padding: 24px;
  background: radial-gradient(ellipse at center, rgba(10, 10, 10, 0.25) 0%, rgba(10, 10, 10, 0.6) 100%);
}

.content {
  position: relative;
  z-index: 2;
}

.label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 20px;
  animation: fadeUp 1s ease;
}

h1 {
  font-size: 5rem;
  font-weight: 200;
  letter-spacing: 6px;
  margin-bottom: 12px;
  animation: fadeUp 1s ease;
  background: linear-gradient(135deg, #fff 30%, #ffb3c6 70%, #ff8aa1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sub {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  margin-bottom: 48px;
  animation: fadeUp 1s ease 0.2s both;
  font-style: italic;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.btn-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1s ease 0.4s both;
}

.btn {
  background: linear-gradient(135deg, rgba(255, 140, 170, 0.2), rgba(255, 100, 150, 0.1));
  border: 1px solid rgba(255, 140, 170, 0.3);
  color: #fff;
  padding: 16px 40px;
  font-size: 1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
  letter-spacing: 0.5px;
  backdrop-filter: blur(4px);
}

.btn:hover {
  background: linear-gradient(135deg, rgba(255, 140, 170, 0.35), rgba(255, 100, 150, 0.2));
  border-color: rgba(255, 140, 170, 0.6);
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(255, 100, 150, 0.2);
}

.btn-no {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.4);
  backdrop-filter: none;
}

.btn-no:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
  transform: none;
  box-shadow: none;
}

.response {
  margin-top: 36px;
  animation: fadeUp 0.6s ease;
}

.response p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.5px;
}

.hidden {
  display: none;
}

@media (max-width: 600px) {
  h1 {
    font-size: 3.2rem;
    letter-spacing: 3px;
  }

  .photo-drop {
    width: 80px !important;
    height: 80px !important;
  }

  .btn {
    padding: 14px 28px;
    font-size: 0.9rem;
  }
}
