body {
    background-color: #202020;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: 'Ubuntu Mono', 'Courier New', monospace;
    font-weight: 600;
}

.container {
    padding: 20px;
}

.terminal-container {
    background-color: #040404;
    width: 80%;
    max-width: 800px;
    border-width: 1px;
    border-style: solid;
    border-color: #a2a2a2;
    border-radius: 8px;
    box-shadow: 0 30px 25px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.terminal-header {
    background-color: #313131;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #626262;
    position: relative;
}

.terminal-buttons {
    display: flex;
    gap: 8px;
    margin-right: 16px;
}

.terminal-button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.close { background-color: #ff5f56; }
.minimize { background-color: #ffbd2e; }
.maximize { background-color: #27c93f; }

.terminal-title {
    color: #e1e1e1;
    font-size: 15px;
    font-weight:bolder;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.terminal-content {
    padding: 10px;
    background-color: #111111;
    min-height: 300px;
    display: flex;
    align-items: flex-start;
}

.prompt {
    color: #87cf3e;
    margin-right: 8px;
    font-weight:bolder;
}

#hackerText {
    color: #98c379;
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 1.2;
    flex-grow: 1;
    font-weight: 700;
}

/* Add subtle scanline effect */
.terminal-content::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        transparent 0%,
        rgba(32, 32, 32, 0.05) 50%,
        transparent 100%
    );
    background-size: 100% 3px;
    pointer-events: none;
}