/* ============================================
   BE MY VALENTINE - STYLES
   ============================================ */

/* CSS Custom Properties */
:root {
    --pink-100: #fff0f3;
    --pink-200: #ffd6e0;
    --pink-300: #ffb3c6;
    --pink-400: #ff8fab;
    --pink-500: #ff6b8a;
    --pink-600: #e84574;
    --pink-700: #c9184a;
    --rose-glow: rgba(255, 107, 138, 0.4);
    --red-heart: #e63946;
    --cream: #fff5f7;
    --dark-rose: #4a0e2a;
    --gold: #f4c542;
    --success-green: #2ecc71;
    --shadow-soft: 0 8px 32px rgba(232, 69, 116, 0.15);
    --shadow-strong: 0 12px 48px rgba(232, 69, 116, 0.25);
    --radius: 24px;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Quicksand', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #ffd1dc 0%, #ffb3c6 25%, #ff8fab 50%, #ff6b8a 75%, #e84574 100%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    position: relative;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Floating Hearts Background */
.hearts-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.floating-heart {
    position: absolute;
    bottom: -60px;
    font-size: 24px;
    opacity: 0.6;
    animation: floatUp linear infinite;
    pointer-events: none;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.3));
}

@keyframes floatUp {
    0% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.7;
    }
    50% {
        opacity: 0.9;
    }
    100% {
        transform: translateY(-110vh) rotate(720deg) scale(0.3);
        opacity: 0;
    }
}

/* Container */
.container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 520px;
    padding: 20px;
}

/* Stages */
.stage {
    display: none;
    animation: fadeInUp 0.6s ease-out;
}

.stage.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Card */
.card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius);
    padding: 40px 36px;
    box-shadow: var(--shadow-strong);
    border: 1px solid rgba(255, 255, 255, 0.5);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pink-400), var(--pink-600), var(--red-heart), var(--pink-600), var(--pink-400));
    background-size: 200% 100%;
    animation: shimmer 3s ease infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.card:hover {
    box-shadow: 0 16px 64px rgba(232, 69, 116, 0.3);
    transform: translateY(-2px);
}

/* Emoji top */
.emoji-top {
    font-size: 48px;
    margin-bottom: 12px;
    animation: bounce 2s ease infinite;
    display: inline-block;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Typography */
.title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-rose);
    margin-bottom: 8px;
    line-height: 1.2;
    transition: all 0.4s ease;
}

.subtitle {
    font-size: 1.05rem;
    color: var(--pink-600);
    margin-bottom: 24px;
    font-weight: 500;
    transition: all 0.4s ease;
}

/* GIF Container */
.gif-container {
    margin: 20px auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 280px;
    border: 3px solid var(--pink-200);
    transition: var(--transition);
}

.cute-gif {
    width: 100%;
    height: auto;
    display: block;
    min-height: 180px;
    object-fit: cover;
}

/* Buttons */
.buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    margin-top: 28px;
    flex-wrap: wrap;
    min-height: 70px;
    position: relative;
}

.btn {
    padding: 14px 36px;
    border: none;
    border-radius: 50px;
    font-family: 'Quicksand', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    outline: none;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: width 0.6s, height 0.6s, top 0.6s, left 0.6s;
}

.btn:active::after {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
}

/* Yes Button */
.btn-yes {
    background: linear-gradient(135deg, #ff6b8a, #e84574);
    color: white;
    box-shadow: 0 4px 15px rgba(232, 69, 116, 0.4);
    min-width: 140px;
}

.btn-yes:hover {
    background: linear-gradient(135deg, #ff8fab, #ff6b8a);
    transform: scale(1.08);
    box-shadow: 0 6px 25px rgba(232, 69, 116, 0.5);
}

.btn-yes:active {
    transform: scale(0.98);
}

/* Growing yes button */
.btn-yes.growing-1 {
    padding: 16px 42px;
    font-size: 1.2rem;
}
.btn-yes.growing-2 {
    padding: 18px 48px;
    font-size: 1.3rem;
}
.btn-yes.growing-3 {
    padding: 20px 54px;
    font-size: 1.4rem;
}
.btn-yes.growing-4 {
    padding: 22px 58px;
    font-size: 1.5rem;
}
.btn-yes.growing-5 {
    padding: 24px 62px;
    font-size: 1.55rem;
}
.btn-yes.growing-6 {
    padding: 26px 66px;
    font-size: 1.6rem;
}
.btn-yes.growing-7 {
    padding: 28px 70px;
    font-size: 1.7rem;
}

/* No Button */
.btn-no {
    background: linear-gradient(135deg, #bbb, #999);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 100px;
    transition: all 0.25s ease;
}

.btn-no:hover {
    background: linear-gradient(135deg, #aaa, #888);
    transform: scale(1.03);
}

/* Shrinking no button */
.btn-no.shrinking-1 {
    padding: 12px 30px;
    font-size: 1rem;
}
.btn-no.shrinking-2 {
    padding: 11px 26px;
    font-size: 0.95rem;
}
.btn-no.shrinking-3 {
    padding: 10px 22px;
    font-size: 0.9rem;
}
.btn-no.shrinking-4 {
    padding: 9px 18px;
    font-size: 0.85rem;
}
.btn-no.shrinking-5 {
    padding: 8px 16px;
    font-size: 0.8rem;
}
.btn-no.shrinking-6 {
    padding: 7px 14px;
    font-size: 0.75rem;
}
.btn-no.shrinking-7 {
    padding: 6px 12px;
    font-size: 0.7rem;
    opacity: 0.6;
}

/* Fleeing no button */
.btn-no.fleeing {
    position: absolute;
}

/* Shake animation for card */
.card.shake {
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    15% { transform: translateX(-8px) rotate(-1deg); }
    30% { transform: translateX(8px) rotate(1deg); }
    45% { transform: translateX(-6px) rotate(-0.5deg); }
    60% { transform: translateX(6px) rotate(0.5deg); }
    75% { transform: translateX(-3px); }
}

/* Sad pulse for subtitle */
.subtitle.sad {
    color: var(--red-heart);
    animation: sadPulse 1s ease;
}

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

/* ============= SUCCESS STAGE ============= */

.success-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 240, 243, 0.95));
}

.success-title {
    font-size: 2.4rem;
    background: linear-gradient(135deg, var(--pink-600), var(--red-heart));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: successPop 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes successPop {
    0% { transform: scale(0); opacity: 0; }
    60% { transform: scale(1.15); }
    100% { transform: scale(1); opacity: 1; }
}

.success-subtitle {
    font-size: 1.15rem;
    color: var(--pink-500);
}

.success-hearts {
    font-size: 2rem;
    margin: 20px 0;
    letter-spacing: 8px;
    animation: heartWave 2s ease infinite;
}

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

/* ============= CAPTURED PHOTO ON END SCREEN ============= */

.captured-photo-section {
    margin: 20px auto;
    animation: fadeInUp 0.8s ease-out;
}

.captured-frame {
    position: relative;
    display: inline-block;
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 8px 32px rgba(232, 69, 116, 0.3),
        0 0 0 3px var(--pink-200),
        0 0 60px rgba(255, 107, 138, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.captured-frame:hover {
    transform: scale(1.02) rotate(0.5deg);
    box-shadow:
        0 12px 48px rgba(232, 69, 116, 0.4),
        0 0 0 3px var(--pink-300),
        0 0 80px rgba(255, 107, 138, 0.25);
}

#valentineCanvas {
    display: block;
    max-width: 100%;
    border-radius: 14px;
}

/* ============= CAMERA MODAL ============= */

.camera-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    background: rgba(74, 14, 42, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    animation: modalFadeIn 0.4s ease-out;
}

.camera-modal.active {
    display: flex;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.camera-box {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 240, 243, 0.97));
    border-radius: 28px;
    padding: 32px 28px 24px;
    max-width: 440px;
    width: 92%;
    text-align: center;
    box-shadow:
        0 24px 80px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    animation: modalSlideUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.camera-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pink-400), var(--gold), var(--pink-600), var(--gold), var(--pink-400));
    background-size: 300% 100%;
    animation: shimmer 2s ease infinite;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.camera-emoji {
    font-size: 42px;
    margin-bottom: 4px;
    animation: bounce 2s ease infinite;
    display: inline-block;
}

.camera-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark-rose);
    margin: 0 0 4px;
}

.camera-subtitle {
    font-size: 0.95rem;
    color: var(--pink-500);
    margin-bottom: 16px;
    font-weight: 500;
}

/* Camera viewfinder */
.camera-viewfinder {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: #1a0a10;
    border: 3px solid var(--pink-200);
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.3);
    aspect-ratio: 4 / 3;
}

.camera-viewfinder video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scaleX(-1); /* Mirror for selfie */
    transition: filter 0.3s ease;
}

.camera-viewfinder canvas {
    display: none;
}

.camera-viewfinder img {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: filter 0.3s ease;
}

.camera-viewfinder.flash::after {
    content: '';
    position: absolute;
    inset: 0;
    background: white;
    opacity: 0;
    pointer-events: none;
}

.camera-viewfinder.flash::after {
    animation: flashAnim 0.4s ease-out;
}

@keyframes flashAnim {
    0% { opacity: 0.8; }
    100% { opacity: 0; }
}

/* ============= FILTER STRIP ============= */

.filter-strip {
    display: flex;
    gap: 8px;
    padding: 14px 4px 8px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
    max-height: 120px;
}

.filter-strip::-webkit-scrollbar {
    display: none;
}

.filter-strip.collapsed {
    max-height: 0;
    opacity: 0;
    padding: 0 4px;
    overflow: hidden;
}

.filter-btn {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: none;
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 6px 8px;
    cursor: pointer;
    transition: all 0.25s ease;
    scroll-snap-align: center;
    min-width: 62px;
}

.filter-btn:hover {
    background: rgba(255, 143, 171, 0.1);
    border-color: var(--pink-200);
}

.filter-btn.active {
    border-color: var(--pink-500);
    background: rgba(255, 107, 138, 0.12);
    box-shadow: 0 2px 12px rgba(232, 69, 116, 0.2);
}

.filter-btn span {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--dark-rose);
    letter-spacing: 0.3px;
}

.filter-btn.active span {
    color: var(--pink-600);
}

/* Filter preview circles */
.filter-preview {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffc3a0, #ffafbd, #a8edea);
    background-size: 200% 200%;
    animation: previewShift 4s ease infinite;
    border: 2px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@keyframes previewShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.fp-normal { filter: none; }
.fp-warm { filter: saturate(1.3) sepia(0.2) brightness(1.05); }
.fp-cool { filter: saturate(0.9) hue-rotate(15deg) brightness(1.05); }
.fp-vintage { filter: sepia(0.45) saturate(1.2) contrast(1.1) brightness(0.95); }
.fp-rosy { filter: saturate(1.4) hue-rotate(-10deg) brightness(1.05); }
.fp-bw { filter: grayscale(1) contrast(1.15) brightness(1.05); }
.fp-dreamy { filter: saturate(1.1) brightness(1.15) contrast(0.9) blur(0.5px); }
.fp-vivid { filter: saturate(1.8) contrast(1.2) brightness(1.05); }
.fp-fade { filter: saturate(0.7) brightness(1.1) contrast(0.85) sepia(0.1); }

/* ============= CAMERA BUTTONS ============= */

.camera-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 16px;
}

.btn-capture {
    background: linear-gradient(135deg, #ff6b8a, #e84574);
    color: white;
    padding: 12px 32px;
    font-size: 1.05rem;
    box-shadow: 0 4px 18px rgba(232, 69, 116, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-capture:hover {
    background: linear-gradient(135deg, #ff8fab, #ff6b8a);
    transform: scale(1.06);
    box-shadow: 0 6px 24px rgba(232, 69, 116, 0.5);
}

.btn-retake {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 12px 24px;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-retake:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.45);
}

.btn-confirm {
    background: linear-gradient(135deg, #ff6b8a, #e84574);
    color: white;
    padding: 12px 28px;
    font-size: 1rem;
    box-shadow: 0 4px 18px rgba(232, 69, 116, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-confirm:hover {
    background: linear-gradient(135deg, #ff8fab, #ff6b8a);
    transform: scale(1.06);
    box-shadow: 0 6px 24px rgba(232, 69, 116, 0.5);
}

.btn-skip {
    background: rgba(0, 0, 0, 0.06);
    color: var(--pink-600);
    padding: 12px 24px;
    font-size: 0.9rem;
    border: 1px solid var(--pink-200);
}

.btn-skip:hover {
    background: rgba(232, 69, 116, 0.08);
    border-color: var(--pink-400);
    transform: scale(1.03);
}

/* ============= FURTHER IMPLEMENTATION ============= */

.further-section {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 2px dashed var(--pink-200);
}

.further-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--dark-rose);
    margin-bottom: 16px;
    font-weight: 600;
}

.further-placeholder {
    background: linear-gradient(135deg, var(--pink-100), #fff);
    border: 2px dashed var(--pink-300);
    border-radius: 16px;
    padding: 30px 20px;
    transition: var(--transition);
}

.further-placeholder:hover {
    border-color: var(--pink-500);
    box-shadow: 0 4px 20px rgba(232, 69, 116, 0.1);
}

.placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.placeholder-icon {
    font-size: 2rem;
    animation: spin 4s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.placeholder-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--pink-600);
}

.placeholder-hint {
    font-size: 0.8rem;
    color: var(--pink-400);
    font-style: italic;
}

/* Confetti Canvas */
#confettiCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 100;
}

/* Sparkle effect on yes button */
.btn-yes::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff6b8a, #ff8fab, #ffd1dc, #ff8fab, #ff6b8a);
    background-size: 400%;
    border-radius: 50px;
    z-index: -1;
    animation: sparkle 3s ease infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-yes:hover::before {
    opacity: 1;
}

@keyframes sparkle {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Text transition */
.text-swap {
    animation: textSwap 0.4s ease;
}

@keyframes textSwap {
    0% { opacity: 0; transform: translateY(-10px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ============= RESPONSIVE ============= */

@media (max-width: 480px) {
    .card {
        padding: 28px 20px;
    }
    .title {
        font-size: 1.6rem;
    }
    .subtitle {
        font-size: 0.95rem;
    }
    .btn {
        padding: 12px 28px;
        font-size: 1rem;
    }
    .gif-container {
        max-width: 220px;
    }
    .success-title {
        font-size: 1.8rem;
    }
    
    .camera-box {
        padding: 24px 16px 20px;
        border-radius: 22px;
    }
    .camera-title {
        font-size: 1.35rem;
    }
    .filter-btn {
        min-width: 56px;
        padding: 4px 6px;
    }
    .filter-preview {
        width: 36px;
        height: 36px;
    }
    .filter-btn span {
        font-size: 0.6rem;
    }
    .camera-buttons {
        gap: 8px;
    }
    .btn-capture,
    .btn-retake,
    .btn-confirm {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    .btn-skip {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
}

/* Hidden Privacy Footer */
.secret-footer {
    position: fixed;
    bottom: 15px;
    left: 15px;
    opacity: 0.4;
    transition: opacity 0.3s;
    z-index: 9999;
}

.secret-footer:hover {
    opacity: 0.8;
}

.tiny-link {
    font-size: 9px;
    color: #c9184a; /* Darker pink so it's slightly more visible */
    text-decoration: none;
    font-family: 'Quicksand', sans-serif;
    letter-spacing: 0.5px;
    cursor: pointer;
}

/* Privacy Modal Styles */
.privacy-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    overflow-y: auto;
}

.privacy-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    box-shadow: var(--shadow-strong);
    position: relative;
    font-family: 'Quicksand', sans-serif;
}

.privacy-body {
    text-align: left;
    max-height: 400px;
    overflow-y: auto;
    font-size: 0.9rem;
    color: #444;
    line-height: 1.5;
    padding-right: 10px;
}

.privacy-body h3 {
    margin: 20px 0 8px;
    color: var(--pink-700);
    font-size: 1rem;
}

.privacy-body::-webkit-scrollbar {
    width: 6px;
}

.privacy-body::-webkit-scrollbar-thumb {
    background: var(--pink-200);
    border-radius: 10px;
}

.close-privacy {
    position: absolute;
    right: 20px;
    top: 15px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-privacy:hover {
    color: var(--pink-600);
}

/* Dramatic Fallout Animation */
.falling-out {
    animation: buttonFall 1s ease-in forwards !important;
    pointer-events: none;
    position: absolute;
}

@keyframes buttonFall {
    0% {
        transform: scale(20) translate(0, 0) rotate(0);
        opacity: 1;
    }
    20% {
        transform: scale(20) translate(0, -20px) rotate(0);
    }
    100% {
        transform: scale(20) translate(20px, 120vh) rotate(25deg);
        opacity: 0;
    }
}
