.secret-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    cursor: pointer;
    z-index: 9999;
    transition: all 0.3s;
}

.secret-btn:hover {
    background: rgba(0, 255, 157, 0.5);
    box-shadow: 0 0 10px var(--highlight);
}

#terminal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0c0c0c;
    color: #cccccc;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    padding: 20px;
    z-index: 10000;
    display: none;
    overflow-y: auto;
    text-align: left;
}

#terminal-overlay.open {
    display: block;
}

.terminal-line {
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.prompt {
    color: #00ff9d;
    margin-right: 10px;
    white-space: nowrap;
}

.path {
    color: #5ea1ff;
}

.cmd-input {
    background: transparent;
    border: none;
    color: #fff;
    font-family: inherit;
    font-size: inherit;
    flex-grow: 1;
    outline: none;
    caret-color: #00ff9d;
}

.output {
    color: #aaa;
    margin-bottom: 10px;
    white-space: pre-wrap;
    line-height: 1.5;
}

#terminal-overlay::-webkit-scrollbar {
    width: 10px;
}
#terminal-overlay::-webkit-scrollbar-track {
    background: #0c0c0c;
}
#terminal-overlay::-webkit-scrollbar-thumb {
    background: #333;
}
