.typewriter-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Tăng z-index từ -2 lên -1 để đảm bảo hiển thị trên nền */
    overflow: hidden;
    pointer-events: none;
}

.typewriter-text {
    position: absolute;
    font-family: 'Courier New', monospace;
    color: rgba(0, 255, 0, 0.2); /* Tăng độ đậm từ 0.15 lên 0.2 */
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    padding: 5px;
    opacity: 0;
    transition: opacity 0.5s;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.cursor {
    display: inline-block;
    width: 8px;
    height: 14px;
    background-color: rgba(0, 255, 0, 0.5);
    margin-left: 2px;
    animation: blink 1s infinite;
    vertical-align: middle;
}