/* typewriter.css */
.feature-demo {
    margin-bottom: 40px;
    padding: 20px;
    background: rgba(30, 30, 50, 0.5);
    border-radius: 10px;
}

.demo-container {
    margin-top: 20px;
    text-align: center;
}

.typewriter {
    border-right: 3px solid var(--accent);
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    font-family: 'Roboto Mono', monospace;
    color: #41d8bf;
    margin: 20px 0;
    padding-right: 3px;
}

.typewriter.complete {
    border-right: none;
}

#restart-typing {
    background: var(--accent);
    color: var(--dark);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Roboto Mono', monospace;
    font-weight: bold;
    transition: all 0.3s;
}

#restart-typing:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-2px);
}
