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

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

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

.header-section {
    display: flex;
    padding: 20px;
    background: #000;
    border-bottom: 2px solid #00ff00;
    gap: 30px;
    align-items: center;
}

.logo-section {
    flex-shrink: 0;
}

.logo-placeholder {
    width: 120px;
    height: 120px;
    background: #111;
    border: 2px solid #00ff00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: bold;
    color: #00ff00;
}

.header-text {
    flex: 1;
}

.header-text h1 {
    color: #00ff00;
    font-size: 24px;
    margin-bottom: 10px;
}

.header-text p {
    color: #0f0;
    font-size: 14px;
    margin: 5px 0;
}

.terminal-container {
    flex: 1;
    background: #000;
    padding: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.terminal-output {
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
    margin-bottom: 10px;
}

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

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

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

.terminal-line {
    margin-bottom: 8px;
    line-height: 1.5;
}

.prompt {
    color: #00ff00;
}

.command {
    color: #fff;
}

.output-text {
    color: #0f0;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.error-text {
    color: #ff5555;
}

.terminal-input-line {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    background: #000;
}

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

.scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent 50%, rgba(0, 255, 0, 0.02) 50%);
    background-size: 100% 4px;
    pointer-events: none;
    animation: scan 8s linear infinite;
}

@keyframes scan {
    0% { transform: translateY(0); }
    100% { transform: translateY(100%); }
}

.neofetch-container {
    display: flex;
    gap: 30px;
    margin: 10px 0;
}

.neofetch-ascii {
    color: #00ffff;
    font-size: 10px;
    line-height: 1;
    white-space: pre;
}

.neofetch-image {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 2px solid #00ff00;
    border-radius: 8px;
}

.neofetch-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.info-line {
    color: #00ff00;
}

.nav-section {
    padding: 15px 20px;
    background: #000;
    border-top: 1px solid #333;
}

.nav-section a {
    color: #00ff00;
    text-decoration: none;
    margin-right: 20px;
    transition: color 0.3s;
}

.nav-section a:hover {
    color: #00ffff;
}

.color-bar {
    display: inline;
}

