/* Shared Lab Styles - Turkamerica */

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slideUp {
    animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Interactive Story Words */
.interactive-word {
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0 2px;
    border-radius: 4px;
    display: inline-block;
}

.interactive-word:hover {
    background-color: rgba(37, 99, 235, 0.1); /* blue-600 with opacity */
    color: #2563eb;
    transform: translateY(-2px);
}

.dark-mode .interactive-word:hover {
    background-color: rgba(96, 165, 250, 0.2); /* blue-400 with opacity */
    color: #60a5fa;
}

/* Hidden native text */
.native-hidden {
    display: none !important;
}
