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

body {
    font-family: 'Courier New', monospace;
    background: #000;
    color: #00ff00;
    overflow: hidden;
    height: 100vh;
}

.container {
    display: flex;
    height: 100vh;
}

.photo-section {
    flex: 1;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.photo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,255,0,0.1) 0%, rgba(0,255,0,0.05) 50%, rgba(0,255,0,0.1) 100%);
    z-index: 1;
}

.photo-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 80%;
}

.developer-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 3px solid #00ff00;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.3);
    margin-bottom: 20px;
    object-fit: cover;
}

.developer-name {
    font-size: 2rem;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.developer-title {
    font-size: 1.2rem;
    color: #00cc00;
    margin-bottom: 20px;
}

.terminal-section {
    flex: 1;
    background: #000;
    border-left: 2px solid #00ff00;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.terminal-header {
    background: #001100;
    padding: 10px 20px;
    border-bottom: 1px solid #00ff00;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.terminal-title {
    font-size: 1.2rem;
    font-weight: bold;
}

.terminal-controls {
    display: flex;
    gap: 10px;
}

.control-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
}

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

.terminal-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #000;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.6;
}

.terminal-output {
    margin-bottom: 20px;
}

.command-line {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.prompt {
    color: #00ff00;
    margin-right: 10px;
    font-weight: bold;
}

.command-input {
    background: transparent;
    border: none;
    color: #00ff00;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    outline: none;
    flex: 1;
    caret-color: #00ff00;
}

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

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

.output-line {
    margin-bottom: 5px;
    white-space: pre-wrap;
}

.command {
    color: #00ff00;
    font-weight: bold;
}

.response {
    color: #00cc00;
}

.error {
    color: #ff4444;
}

.success {
    color: #00ff88;
}

.skill-item {
    margin: 5px 0;
    padding-left: 20px;
}

.skill-category {
    color: #00ff88;
    font-weight: bold;
    margin-top: 10px;
}

/* Scrollbar styling */
.terminal-body::-webkit-scrollbar {
    width: 8px;
}

.terminal-body::-webkit-scrollbar-track {
    background: #001100;
}

.terminal-body::-webkit-scrollbar-thumb {
    background: #00ff00;
    border-radius: 4px;
}

.terminal-body::-webkit-scrollbar-thumb:hover {
    background: #00cc00;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    
    .terminal-section {
        border-left: none;
        border-top: 2px solid #00ff00;
    }
    
    .developer-image {
        width: 200px;
        height: 200px;
    }
    
    .developer-name {
        font-size: 1.5rem;
    }
}
