 .container {
            max-width: 800px;
            margin: 0 auto;
        }

        /* Kompakte Kapazitäts-Box */
        .capacity-box {
            background: #eef2e8;
            border-radius: 16px;
            padding: 32px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(238, 242, 232, 0.4);
            transition: all 0.3s ease;
        }

        .capacity-box:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(238, 242, 232, 0.5);
        }

        .capacity-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 24px;
            flex-wrap: wrap;
            gap: 16px;
        }

        .status-section {
            flex: 1;
            min-width: 200px;
        }

        .status-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.7);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            color: #1e1e1e;
            margin-bottom: 12px;
            backdrop-filter: blur(10px);
        }

        .status-dot {
            width: 8px;
            height: 8px;
            background: #22c55e;
            border-radius: 50%;
            animation: pulse-green 2s ease-in-out infinite;
        }

        @keyframes pulse-green {
            0%, 100% { 
                background: #22c55e;
                box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
            }
            50% { 
                background: #16a34a;
                box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
            }
        }

        .capacity-title {
            font-size: 24px;
            font-weight: 700;
            color: #1e1e1e;
            margin: 0;
            letter-spacing: -0.02em;
        }

        .capacity-numbers {
            text-align: right;
            color: #1e1e1e;
        }

        .current-number {
            font-size: 36px;
            font-weight: 700;
            line-height: 1;
            margin-bottom: 4px;
        }

        .capacity-label {
            font-size: 14px;
            opacity: 0.8;
            font-weight: 500;
        }

        /* Progress Section */
        .progress-section {
            margin-bottom: 24px;
        }

        .progress-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
        }

        .progress-label {
            font-size: 16px;
            font-weight: 600;
            color: #1e1e1e;
        }

        .progress-percentage {
            font-size: 14px;
            font-weight: 600;
            color: #1e1e1e;
            opacity: 0.8;
        }

        .progress-bar-container {
            height: 8px;
            background: rgba(30, 30, 30, 0.1);
            border-radius: 4px;
            overflow: hidden;
            position: relative;
        }

        .progress-bar {
            height: 100%;
            background: linear-gradient(90deg, #1e1e1e 0%, rgba(30, 30, 30, 0.8) 100%);
            border-radius: 4px;
            width: 40%;
            transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
        }

        .progress-bar::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
            animation: shimmer 2s ease-in-out infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        /* Project Dots - Retro Minimal */
        .project-indicators {
            display: flex;
            justify-content: center;
            gap: 6px;
            margin-bottom: 20px;
            padding: 8px 0;
        }

        .project-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            transition: all 0.2s ease;
            position: relative;
        }

        .project-dot.active {
            background: #1e1e1e;
            opacity: 1;
        }

        .project-dot.empty {
            background: rgba(30, 30, 30, 0.25);
            opacity: 0.6;
        }

        .project-dot:hover {
            transform: scale(1.3);
            opacity: 1;
        }

        .project-dot.active:hover {
            background: #2a2a2a;
        }

        .project-dot.empty:hover {
            background: rgba(30, 30, 30, 0.4);
        }

        /* Subtitle */
        .capacity-subtitle {
            font-size: 14px;
            color: rgba(30, 30, 30, 0.8);
            line-height: 1.5;
            margin: 0;
        }

        /* Responsive */
        @media (max-width: 600px) {
            .capacity-header {
                flex-direction: column;
                align-items: flex-start;
            }

            .capacity-numbers {
                text-align: left;
            }

            .capacity-title {
                font-size: 20px;
            }

            .current-number {
                font-size: 28px;
            }

            .capacity-box {
                padding: 24px;
            }
        }

        /* Loading Animation */
        .capacity-box {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease-out 0.2s forwards;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }