
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap');

* {
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  margin: 0;
  height: 100vh;
  overflow: hidden;
  background: radial-gradient(circle at top, #0c0c14, #000);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Ambient glow */
.glow-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(0,245,255,0.12), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(255,105,180,0.12), transparent 40%);
  animation: breathe 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes breathe {
  0%,100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* Center card */
.card {
  position: relative;
  width: 380px;
  padding: 32px;
  border-radius: 22px;
  background: rgba(15,15,25,0.75);
  backdrop-filter: blur(18px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
  text-align: center;
  animation: enter 0.9s ease;
}

@keyframes enter {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

h1 {
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.subtitle {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 28px;
}

/* Choice blocks */
.choice {
  padding: 18px;
  border-radius: 16px;
  margin-bottom: 16px;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
}

.choice:hover {
  transform: translateY(-4px);
}

/* Power */
.power {
  background: linear-gradient(135deg, #000, #0b1a1f);
  border: 1px solid rgba(0,245,255,0.5);
  box-shadow: 0 0 25px rgba(0,245,255,0.25);
}

.power h2 {
  color: #00f5ff;
}

/* Love */
.love {
  background: linear-gradient(135deg, #2a0f1c, #12060c);
  border: 1px solid rgba(255,105,180,0.5);
  box-shadow: 0 0 25px rgba(255,105,180,0.25);
}

.love h2 {
  color: #ff7eb3;
}

.choice p {
  font-size: 13px;
  opacity: 0.8;
}

/* Footer line */
.footer {
  margin-top: 14px;
  font-size: 11px;
  opacity: 0.5;
}

/* ===============================
   📱 MOBILE RESPONSIVE
================================ */

@media (max-width: 480px) {

  body {
    padding: 16px;
  }

  .card {
    width: 100%;
    max-width: 360px;
    padding: 24px;
    border-radius: 18px;
  }

  h1 {
    font-size: 22px;
  }

  .subtitle {
    font-size: 13px;
    margin-bottom: 22px;
  }

  .choice {
    padding: 16px;
    margin-bottom: 14px;
  }

  .choice h2 {
    font-size: 18px;
  }

  .choice p {
    font-size: 12px;
  }

  .footer {
    font-size: 10px;
  }
}

/* ===============================
   📲 VERY SMALL DEVICES
================================ */

@media (max-width: 360px) {

  h1 {
    font-size: 20px;
  }

  .choice h2 {
    font-size: 16px;
  }

  .choice {
    padding: 14px;
  }
}

@media (hover: none) {
  .choice:hover {
    transform: none;
  }
}

