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

body {
    font-family: 'Source Code Pro', monospace;
    background-color: #1e1e1e;
    color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.terminal {
    width: 100%;
    max-width: 900px;
    background-color: #282828;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.terminal-header {
    background-color: #333;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #444;
}

.terminal-buttons {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.red { background-color: #ff5f56; }
.yellow { background-color: #ffbd2e; }
.green { background-color: #27c93f; }

.terminal-title {
    margin-left: 20px;
    font-size: 14px;
    color: #ddd;
}

.terminal-content {
    padding: 20px;
    font-family: 'Source Code Pro', monospace;
}

.terminal-row {
    display: flex;
    margin-bottom: 20px;
    align-items: center;
}

.ascii-art {
    color: #5294e2; /* A typical blue color for logos in neofetch */
    font-size: 12px;
    margin-right: 25px;
    line-height: 1.2;
    display: flex;
    align-items: center;
}

.ascii-art pre {
    white-space: pre;
    font-family: monospace;
}

/* Resetting H1 styles for ASCII art to prevent visual changes */
.ascii-art h1 {
    font-size: inherit; /* Inherit from .ascii-art */
    font-weight: inherit; /* Inherit from .ascii-art or its parent */
    line-height: inherit; /* Inherit from .ascii-art */
    margin: 0; /* Remove default h1 margins */
    padding: 0; /* Remove default h1 padding */
    color: inherit; /* Inherit color from .ascii-art */
    display: inline; /* To behave like the pre tag was, or block if pre was block */
}

/* Visually hidden class */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap; /* Added to prevent line breaks */
    border: 0;
}

.system-info-container { /* Renamed from .system-info to avoid conflict if needed, or just style .system-info dl */
    flex: 1;
}

.info-item {
    margin-bottom: 6px;
}

.label {
    color: #5294e2;
    font-weight: 600;
    margin-right: 5px;
    display: inline; /* Default for dt is block, ensure it's inline if that was the previous look */
}

.value { /* This now targets dd.value */
    color: #e5e5e5;
    display: inline; /* Default for dd is block, ensure it's inline if that was the previous look */
    margin-left: 0; /* Reset default dd margin if any */
}

.color-blocks {
    display: flex;
    margin-top: 20px;
    gap: 5px;
}

.block {
    width: 20px;
    height: 20px;
    border-radius: 2px;
}

.block:nth-child(1) { background-color: #cc342b; }
.block:nth-child(2) { background-color: #198844; }
.block:nth-child(3) { background-color: #fba922; }
.block:nth-child(4) { background-color: #3971ed; }
.block:nth-child(5) { background-color: #a36ac7; }
.block:nth-child(6) { background-color: #3971ed; }
.block:nth-child(7) { background-color: #c5c8c6; }
.block:nth-child(8) { background-color: #969896; }

.terminal-prompt {
    display: flex;
    align-items: center;
    color: #ddd;
    font-size: 14px;
}

.prompt-user {
    color: #5294e2;
}

.prompt-location {
    color: #5af78e;
}

.cursor {
    margin-left: 5px;
    animation: blink 1s infinite;
}

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

@media (max-width: 768px) {
    .terminal-row {
        flex-direction: column;
    }
    
    .ascii-art {
        margin-right: 0;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .terminal {
        max-width: 100%;
    }
} 