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

body {
    font-family: 'Courier New', monospace;
    background-color: #000000;
    color: #ffffff;
    overflow: hidden;
}

.container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
}

/* Header */
.header {
    padding: 1rem;
    border-bottom: 1px solid #15803d;
    text-align: left;
}

.name {
    font-size: 1.5rem;
    color: #22c55e;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.subtitle {
    font-size: 0.875rem;
    color: #9ca3af;
}

/* Main Content */
.main-content {
    display: flex;
    flex: 1;
    overflow: hidden;
}

/* Card Panel */
.card-panel {
    width: 40%;
    border-right: 1px solid #15803d;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.card-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card {
    width: 280px;
    height: 400px;
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 20px 60px #00000080;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: rotateY(5deg) rotateX(5deg);
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    /*filter: grayscale(100%);*/
}

/* Terminal Panel */
.terminal-panel {
    width: 60%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.terminal {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1rem;
    overflow: hidden;
}

.command-menu {
    font-size: 0.875rem;
    color: #22c55e;
    padding: 0;
    border-bottom: 1px solid #15803d;
    margin-bottom: 1rem;
}

.terminal-output {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 1rem;
    scrollbar-width: thin;
    scrollbar-color: #22c55e #000000;
}

.terminal-output::-webkit-scrollbar {
    width: 8px;
}

.terminal-output::-webkit-scrollbar-track {
    background: #000000;
}

.terminal-output::-webkit-scrollbar-thumb {
    background: #22c55e;
    border-radius: 4px;
}

.command-block {
    margin-bottom: 1rem;
}

.command-line {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.prompt {
    color: #60a5fa;
    margin-right: 0.5rem;
}

.response {
    color: #ffffff;
    white-space: pre-wrap;
    line-height: 1.6;
}

/* Terminal Input */
.terminal-input {
    display: flex;
    align-items: center;
}

.input-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

#input-display {
    color: #ffffff;
}

.cursor {
    display: inline-block;
    width: 8px;
    height: 1rem;
    background-color: #22c55e;
    margin-left: 2px;
    animation: blink 1s infinite;
}

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

#terminal-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: default;
    background: transparent;
    border: none;
    outline: none;
    color: transparent;
}
.copy {
    cursor: pointer;
    text-decoration: underline;
    color: #0a84ff;
}

.terminal-link {
    color: #0a84ff;
    text-decoration: underline;
    cursor: pointer;
}
/* Footer */
.footer {
    padding: 0.5rem 1rem;
    border-top: 1px solid #15803d;
    font-size: 0.75rem;
    color: #22c55e;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Responsive */
@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
    }

    .card-panel {
        width: 100%;
        height: 40%;
        border-right: none;
        border-bottom: 1px solid #15803d;
    }

    .terminal-panel {
        width: 100%;
        height: 60%;
    }

    .card {
        width: 200px;
        height: 280px;
    }

    .command-menu {
        font-size: 0.75rem;
        padding: 0.5rem 0;
    }

    .header {
        text-align: left;
    }
}