
body {
    min-height: 100vh;
    display: grid;
    justify-content: center;
    align-items: center;
}

.container {
    max-width: 1200px;
    padding: 2rem;
    width: 100%;
}

/* Common Progress Styles */
.progress-wrapper {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
}

h3 {
    color: #94a3b8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.bar {
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.percentage {
    display: block;
    margin-top: 0.75rem;
    color: #94a3b8;
    font-size: 0.9rem;
}

/* work Progress */
.work-progress .bar {
    background: #1e293b;
    border: 1px solid #475569;
}

.work-progress .work {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: #60a5fa;
}

.work-progress .work::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 20px;
    background: inherit;
    filter: blur(4px);
}

@keyframes work-wave {
    0%, 100% { transform: translateY(0) skewX(0); }
    100% { transform: translateY(-2px) skewX(-5deg); }
}