/* Additional Component Styles */
.screen-content {
    position: relative;
    z-index: 20;
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
}

/* Particle System */
.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.particle.heart {
    width: 20px;
    height: 18px;
    background: #ff6b9d;
    transform: rotate(-45deg);
}

.particle.heart::before,
.particle.heart::after {
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    background: #ff6b9d;
    border-radius: 50%;
}

.particle.heart::before {
    transform: rotate(-45deg);
    transform-origin: 0 100%;
}

.particle.heart::after {
    transform: rotate(45deg);
    transform-origin: 100% 100%;
}

/* Confetti Particles */
.confetti {
    position: absolute;
    width: 12px;
    height: 12px;
    animation: confettiFall linear infinite;
}

@keyframes confettiFall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Shake Animation for No Button */
@keyframes noShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-8px); }
    75% { transform: translateX(8px); }
}

/* Word Animation Delay */
.question-word:nth-child(1) { animation-delay: 0.1s; }
.question-word:nth-child(2) { animation-delay: 0.2s; }
.question-word:nth-child(3) { animation-delay: 0.3s; }
.question-word:nth-child(4) { animation-delay: 0.4s; }
.question-word:nth-child(5) { animation-delay: 0.5s; }