.info-item {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
}

.item-label {
    color: #f0f0f0;
    margin-right: 10px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
    min-width: 90px;
}

.cli-animation {
    margin-top: 10px;
    font-size: 11px;
    color: #8f8f8f;
    padding: 5px 8px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 3px;
    display: inline-block;
}

.cli-prefix {
    color: #aaaaaa;
    font-size: 10px;
}

.cli-cursor {
    animation: cursor-blink 1.5s step-end infinite;
    font-size: 10px;
}

.status-running {
    color: #ff3366;
    font-weight: 600;
    position: relative;
    padding-left: 15px;
}

.status-running::before {
    content: "■";
    position: absolute;
    left: 0;
    color: #ff3366;
    animation: cursor-blink 1.5s step-end infinite;
}

.progress-section {
    margin: 25px 0;
    display: none;
    width: 100%;
    background-color: rgba(20, 20, 20, 0.95);
    border-radius: 4px;
    padding: 18px;
    border-left: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.progress-section:hover {
    background-color: rgba(25, 25, 25, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.status-active-indicator {
    color: #ff3366;
    font-weight: 600;
    position: relative;
    padding-left: 15px;
}

.status-active-indicator::before {
    content: "■";
    position: absolute;
    left: 0;
    color: #ff3366;
    animation: cursor-blink 1.5s step-end infinite;
}

.status-active-indicator-right {
    color: #ff3366;
    margin-left: auto;
    animation: cursor-blink 1.5s step-end infinite;
    position: absolute;
    right: 15px;
}

.progress-item {
    padding: 8px 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 25px;
}

.launch-section {
    margin-top: 30px;
    display: flex;
    justify-content: flex-start;
}

.terminal-button {
    display: none;
}

.hidden-loading {
    display: none;
}

.profile-header, .workspace-info, .progress-section, .projects-section, .contact-section {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.section-title {
    font-size: 14px;
    color: #f0f0f0;
    margin-bottom: 15px;
    letter-spacing: 1.5px;
    position: relative;
    padding-left: 0;
    font-weight: 600;
    width: 100%;
    box-sizing: border-box;
}

.section-title::before {
    content: "//";
    margin-right: 10px;
    color: rgba(255, 255, 255, 0.6);
    position: static;
}

.comments-section,
.contact-section {
    margin-top: 25px;
    display: none;
}