@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Great Vibes', cursive;
    background: linear-gradient(135deg, #ffc0cb 0%, #ffb6d9 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: url('../assets/heart-cursor.png') 16 16, auto;
}

.container {
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(255, 105, 180, 0.3);
    max-width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1 {
    color: #ff69b4;
    margin-bottom: 20px;
    font-size: 3.5em;
    font-weight: 400;
}

p {
    color: #ff69b4;
    margin-bottom: 30px;
    font-size: 1.5em;
}

.button-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.choice-btn {
    padding: 15px 30px;
    font-size: 1em;
    border: none;
    border-radius: 8px;
    background: #ff69b4;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
}

.choice-btn:hover {
    background: #ff1493;
    transform: scale(1.05);
}

.result-container {
    margin-top: 30px;
    padding: 20px;
    background: #ffe4f0;
    border-radius: 8px;
    display: none;
    width: 100%;
    font-size: 1.3em;
    color: #ff69b4;
}

.result-container.show {
    display: block;
}

/* trailing hearts */
.cursor-heart {
  position: fixed;
  pointer-events: none;
  font-size: 18px;           /* adjust size */
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  animation: heartFloat 900ms forwards;
  z-index: 9999;
  will-change: transform, opacity;
}

@keyframes heartFloat {
  0%   { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  60%  { transform: translate(-50%, -120%) scale(1.2); opacity: 0.9; }
  100% { transform: translate(-50%, -200%) scale(0.8); opacity: 0; }
}

/* disable on small touch devices */
@media (hover: none) and (pointer: coarse) {
  .cursor-heart { display: none !important; }
}