.cyber-hash-generator {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, sans-serif;
}

.dark-mode {
    background-color: #1a1a1a;
    color: #ffffff;
}

.comparison-result {
    transition: all 0.3s ease;
}

/* Animation for hash generation */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.generating {
    animation: pulse 1s infinite;
}