/* 20 Questions - Custom Styles */

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Timer animation when low */
.text-danger {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Card hover effect */
.card {
    transition: transform 0.2s ease;
}

/* Button press effect */
.btn:active {
    transform: scale(0.98);
}

/* Word display */
#word {
    word-break: break-word;
}
