        body {
            background-color: #000;
            margin: 0;
            padding: 0;
            overflow: hidden;
            font-family: 'Pacifico', cursive;
            height: 100vh;
        }


        .main-container {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
            background-image: radial-gradient(circle, #ff69b4 0.5px, transparent 1px);
            background-size: 20px 20px;
            animation: move-background 50s linear infinite;
        }
        
        @keyframes move-background {
            from { background-position: 0 0; }
            to { background-position: 0 -1000px; }
        }

        .spawn-photo {
            position: absolute;
            width: 150px;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 0 15px rgba(255, 105, 180, 0.7);
            border: 2px solid rgba(255, 255, 255, 0.3);
            animation: float-up 15s linear forwards;
            user-select: none;
            pointer-events: none;
            z-index: 5;
        }

        @keyframes float-up {
            from {
                transform: translateY(0);
                opacity: 1;
            }
            to {
                transform: translateY(-120vh);
                opacity: 0;
            }
        }

        .spawn-text {
            position: absolute;
            color: #ff69b4;
            font-size: 1.2rem;
            text-shadow:
                0 0 5px #ff69b4,
                0 0 10px #ff69b4,
                0 0 20px #ff1493;
            animation: fade-out 4s forwards;
            white-space: nowrap;
            user-select: none;
            pointer-events: none;
            z-index: 1;
        }


        @keyframes fade-out {
            0% { opacity: 0.7; }
            80% { opacity: 0.7; }
            100% { opacity: 0; }
        }

        .glitter {
            position: absolute;
            top: -10px;
            width: 5px;
            height: 5px;
            background-color: #fff;
            border-radius: 50%;
            box-shadow: 0 0 5px #fff, 0 0 10px #ff69b4;
            animation: fall linear forwards;
            pointer-events: none;
            z-index: 20;
        }


        @keyframes fall {
            to {
                transform: translateY(105vh);
                opacity: 0;
            }
        }