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

body {
    background: #000;
    color: #0f0;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.4;
    overflow: hidden;
}

#screen {
    padding: 20px;
    white-space: pre-wrap;
    word-wrap: break-word;
    height: calc(100vh - 60px);
    overflow-y: auto;
}

#screen::-webkit-scrollbar {
    width: 10px;
}

#screen::-webkit-scrollbar-track {
    background: #111;
}

#screen::-webkit-scrollbar-thumb {
    background: #0f0;
}

.cursor {
    display: inline-block;
    width: 8px;
    height: 16px;
    background: #0f0;
    animation: blink 1s infinite;
    margin-left: 2px;
}

@keyframes blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

#access-granted {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    color: #0f0;
    text-shadow: 0 0 20px #0f0;
    display: none;
    z-index: 1000;
    animation: pulse 0.5s ease-out;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 0; }
    50% { transform: translate(-50%, -50%) scale(1.2); }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}

#bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    border-top: 2px solid #0f0;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

#socials {
    color: #0f0;
    font-size: 14px;
    text-transform: lowercase;
}

#settings {
    display: flex;
    align-items: center;
    color: #0f0;
    font-size: 12px;
}

#settings label {
    margin-right: 10px;
}

#charsPerSecond {
    margin: 0 10px;
    vertical-align: middle;
}

#speedValue {
    display: inline-block;
    min-width: 25px;
    margin-right: 10px;
}

#executeCode {
    background: #000;
    color: #0f0;
    border: 1px solid #0f0;
    padding: 5px 10px;
    cursor: pointer;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    margin-left: 10px;
}

#executeCode:hover {
    background: #0f0;
    color: #000;
}
