@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

body {
    font-family: 'Share Tech Mono', monospace;
}

/* Retro terminal effect */
.terminal-effect {
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.7);
}

/* Blinking cursor animation */
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.blink {
    animation: blink 1s step-end infinite;
}

/* Minitel-style borders */
.minitel-border {
    border: 2px solid #00ff00;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

/* Button hover effects */
.btn-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.7);
    transition: all 0.3s ease;
}