.construction-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    padding: 2rem;
    text-align: center;
}

.construction-icon {
    font-size: 5rem;
    color: var(--color-primary);
    margin-bottom: 2rem;
    position: relative;
}

.construction-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text-light);
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--color-primary), #A855F7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.construction-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-mid);
    margin-bottom: 2rem;
    max-width: 600px;
}

.progress-container {
    width: 100%;
    max-width: 500px;
    margin: 2rem auto;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background-color: var(--color-card-bg);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    width: 45%;
    background: linear-gradient(90deg, var(--color-primary), #A855F7);
    border-radius: 4px;
    animation: progressAnimation 3s ease-in-out infinite;
}

.progress-text {
    font-size: 0.875rem;
    color: var(--color-text-mid);
    display: flex;
    justify-content: space-between;
}

.infinite-loop {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3rem 0;
}

.loop-container {
    position: relative;
    width: 200px;
    height: 200px;
}

.loop-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top: 3px solid var(--color-primary);
    border-radius: 50%;
    animation: spin 2s linear infinite;
}

.loop-circle:nth-child(2) {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    border-top-color: #A855F7;
    animation: spin 1.5s linear infinite reverse;
}

.loop-circle:nth-child(3) {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    border-top-color: #8B5CF6;
    animation: spin 1s linear infinite;
}

.loop-center {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: var(--color-primary);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.info-box {
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: rgba(139, 92, 246, 0.1);
    border-radius: 12px;
    border-left: 4px solid var(--color-primary);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    max-width: 800px;
}

.info-box i {
    color: var(--color-primary);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.info-box p {
    color: var(--color-text-mid);
    margin: 0;
    text-align: left;
}

.info-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
}

.info-link:hover {
    text-decoration: underline;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes progressAnimation {
    0% { width: 45%; }
    50% { width: 75%; }
    100% { width: 45%; }
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

@media (max-width: 768px) {
    .construction-title {
        font-size: 2rem;
    }
    
    .construction-subtitle {
        font-size: 1rem;
    }
    
    .loop-container {
        width: 150px;
        height: 150px;
    }
    
    .info-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .info-box p {
        text-align: center;
    }
}