.initialization-loader {
    margin: 15px 0 20px;
    padding: 15px;
    background-color: rgba(20, 20, 20, 0.9);
    border-radius: 4px;
    font-family: 'JetBrains Mono', monospace;
    border-left: 2px solid #ff3366;
    animation: fadeIn 0.3s ease;
    transition: opacity 0.3s ease;
}

.loader-line {
    margin: 8px 0;
    font-size: 13px;
    color: #e0e0e0;
    opacity: 0;
    animation: typeIn 0.5s ease forwards;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: 'JetBrains Mono', monospace;
}

.loader-line:nth-child(1) { animation-delay: 0.1s; }
.loader-line:nth-child(2) { animation-delay: 0.8s; }
.loader-line:nth-child(3) { animation-delay: 1.5s; }
.loader-line:nth-child(5) { animation-delay: 3s; }

.loader-prefix {
    color: #ff3366;
    font-weight: bold;
    margin-right: 8px;
}

.loader-progress {
    height: 100%;
    width: 0;
    background: repeating-linear-gradient(45deg, #ff3366, #ff3366 5px, #880022 5px, #880022 10px);
    border-radius: 3px;
    box-shadow: 0 0 8px rgba(255, 51, 102, 0.5);
    position: relative;
    transition: width 0.2s ease;
}

.loader-progress::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 5px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    border-radius: 3px;
}

.loader-complete {
    animation: completeFlash 0.5s ease;
}

.cli-loader {
    margin: 15px 0;
    padding: 12px;
    background-color: rgba(10, 10, 10, 0.8);
    border-radius: 3px;
    font-family: 'JetBrains Mono', monospace;
    border-left: 2px solid #ff3366;
}

.cli-loader-line {
    margin: 8px 0;
    font-size: 13px;
    color: #e0e0e0;
    opacity: 0;
    position: relative;
    padding-left: 22px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: 'JetBrains Mono', monospace;
}

.cli-loader-line::before {
    content: ">";
    position: absolute;
    left: 5px;
    color: #ff3366;
    animation: blink 1s infinite;
}

.cli-loader-progress-bar {
    height: 4px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin: 15px 0 5px;
    overflow: hidden;
}

.cli-loader-progress {
    height: 100%;
    width: 0;
    background: repeating-linear-gradient(45deg, #ff3366, #ff3366 5px, #880022 5px, #880022 10px);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(255, 51, 102, 0.5);
}

.access-granted {
    margin: 10px 0 15px;
    padding: 8px 10px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 3px;
    color: #e0e0e0;
    font-size: 13px;
    border-left: 2px solid #33ff66;
    font-family: 'JetBrains Mono', monospace;
}

.access-prefix {
    color: #33ff66;
    font-weight: bold;
    margin-right: 8px;
}

.loading-text {
    color: #e0e0e0;
    font-size: 14px;
    margin-bottom: 15px;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 3px;
    border-left: 2px solid #ff3366;
}

.error-details {
    margin-top: 5px;
    font-size: 12px;
    color: #aaaaaa;
    font-style: italic;
}

