/*
 * NFB Section - Nachfragebündelung Status mit Countdown
 * Extracted from inline styles
 */

.epcan-nfb-section {
    padding: 60px 40px;
    margin: 40px 0;
}

.epcan-nfb-container {
    max-width: 1200px;
    margin: 0 auto;
}

.epcan-nfb-title {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    color: #626262;
    margin-bottom: 50px;
    line-height: 1.4;
}

.epcan-nfb-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.epcan-nfb-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Prozent Kreis */
.epcan-prozent-kreis-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.epcan-prozent-kreis {
    position: relative;
    width: 200px;
    height: 200px;
}

.epcan-prozent-kreis svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}

.epcan-prozent-kreis .kreis-bg {
    fill: none;
    stroke: #e0e0e0;
    stroke-width: 12;
}

.epcan-prozent-kreis .kreis-progress {
    fill: none;
    stroke: #f1800e;
    stroke-width: 12;
    stroke-linecap: round;
    stroke-dasharray: 502.4;
    stroke-dashoffset: 502.4;
    transition: stroke-dashoffset 1.5s ease-in-out;
}

.epcan-prozent-kreis.animate .kreis-progress {
    stroke-dashoffset: var(--offset);
}

.epcan-prozent-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    font-weight: 700;
    color: #565656;
}

.epcan-status-text {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-top: 10px;
}

/* API Status Box */
.epcan-info {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px 25px;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

.epcan-info p {
    margin: 0;
}

/* Countdown Rechts - NEU: Nur Tage */
.epcan-nfb-right {
    text-align: center;
}

.epcan-countdown-intro {
    font-size: 24px;
    font-weight: 500;
    color: #666;
    margin-bottom: 20px;
}

.epcan-countdown-days-big {
    font-size: 120px;
    font-weight: 700;
    color: #f1800e;
    line-height: 1;
    margin-bottom: 10px;
}

.epcan-countdown-days-label {
    font-size: 28px;
    font-weight: 600;
    color: #666;
    margin-bottom: 30px;
}

.epcan-countdown-outro {
    font-size: 20px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
}

@media (max-width: 968px) {
    .epcan-nfb-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .epcan-nfb-section {
        padding: 40px 20px;
    }

    .epcan-nfb-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .epcan-countdown-days-big {
        font-size: 80px;
    }

    .epcan-countdown-days-label {
        font-size: 24px;
    }

    .epcan-countdown-intro,
    .epcan-countdown-outro {
        font-size: 18px;
    }
}
