body, html {
    height: 100%;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 
                'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    overflow: hidden;
    background: #1a1b26; 
}

.desktop {
    background-image: url('https://discuss-cdn.kde.org/uploads/default/original/2X/6/65e4fff379985e0420d83d678c8a2c9e7ffe9185.jpeg');
    background-size: cover;
    background-position: center;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.terminal-window {
    width: 80%;
    max-width: 800px;
    background: rgba(40, 42, 54, 0.95); 
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}


.titlebar {
    background-color: rgba(56, 60, 74, 0.9);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
}
.buttons {
    display: flex;
    gap: 8px;
}
.button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.close { background-color: #ff5f56; }
.minimize { background-color: #ffbd2e; }
.maximize { background-color: #27c93f; }

.title {
    color: #d3dae3;
    font-size: 13px;
    font-weight: 700;
    margin-left: 20px;
}

.terminal-content {
    color: #f8f8f2;
    padding: 20px;
    line-height: 1.6;
    font-family: 'Fira Code', monospace;
    font-size: 14px;
    height: 60vh;
    overflow-y: auto;
}

.line::before {
    content: "prox@arch:~$ ";
    color: #ff79c6;
    font-weight: 500;
}

.response {
    color: #8be9fd; 
    margin-left: 20px;
}

a {
    color: #50fa7b; 
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

pre {
    color: #bd93f9;
    margin-left: 20px;
    font-size: 12px;
}

#command-input {
    background: transparent;
    border: none;
    font-family: 'Fira Code', monospace;
    font-size: 14px;
    color: #f8f8f2;
    outline: none;
    width: calc(100% - 130px);
}

.profile-indicator {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.profile-pic {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #fff;
    background-image: url('prox.png');
    background-size: cover;
    border: 2px solid #fff;
}

.username {
    color: #fff;
    font-family: 'Fira Code', monospace;
    font-size: 12px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}