* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    font-family: 'Courier New', Courier, monospace;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.terminal {
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    border: none;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.terminal-content {
    height: 100%;
    overflow: hidden;
}

.command-line {
    color: #00ff00;
    font-size: 1.2rem;
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
}

.prompt {
    color: #00ff00;
    opacity: 0.8;
}

.typing-text {
    position: relative;
    color: #00ff00;
}

.matrix-rain {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    opacity: 0.15;
}

@media (max-width: 600px) {
    .terminal {
        padding: 10px;
    }

    .command-line {
        font-size: 1rem;
    }
}