/* Initialize Page Styles - Liquid Glass Material Design */

.initialize-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: var(--lg-bg-card);
}

.initialize-card {
    width: 100%;
    max-width: 700px;
    padding: 40px;
    background: var(--lg-layer-base);
    border: 1px solid var(--lg-border);
    backdrop-filter: blur(var(--lg-blur)) saturate(var(--lg-saturate));
    -webkit-backdrop-filter: blur(var(--lg-blur)) saturate(var(--lg-saturate));
    box-shadow: var(--lg-shadow-combined);
    border-radius: var(--lg-border-radius);
}

.initialize-card h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-white);
    text-align: center;
}

.subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    margin-bottom: 40px;
}

/* Progress Section */
.progress-section {
    margin-bottom: 40px;
}

.progress-bar-container {
    position: relative;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--ios-blue-primary), #20c997);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 4px;
}

.progress-text {
    text-align: center;
    color: var(--ios-blue-primary);
    font-size: 18px;
    font-weight: 700;
}

/* Steps List */
.steps-list {
    margin: 16px 0;
}

.step-item {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-item.active {
    background: rgba(40, 167, 69, 0.1);
    border-color: var(--ios-blue-primary);
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.step-item.completed {
    background: rgba(40, 167, 69, 0.05);
    border-color: rgba(40, 167, 69, 0.3);
    opacity: 0.8;
}

.step-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    font-size: 11px;
    flex-shrink: 0;
}

.step-item.active .step-icon {
    background: var(--ios-blue-primary);
    border-color: var(--ios-blue-primary);
    color: white;
}

.step-item.completed .step-icon {
    background: var(--ios-blue-primary);
    border-color: var(--ios-blue-primary);
    color: white;
}

.step-item.completed .step-icon::after {
    content: '✓';
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 2px;
}

.step-message {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

.step-progress {
    width: 80px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-left: 10px;
    flex-shrink: 0;
}

.step-progress-fill {
    height: 100%;
    background: var(--ios-blue-primary);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 0%;
}

/* Status Message */
.status-message {
    text-align: center;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .initialize-card {
        padding: 24px;
    }

    .initialize-card h1 {
        font-size: 24px;
    }

    .step-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .step-progress {
        width: 100%;
        margin-left: 0;
        margin-top: 10px;
    }
}




