.csd-eefdaf92-wrapper {
    background-color: #0b1120;
    border-radius: 12px;
    padding: 30px;
    font-family: system-ui, -apple-system, sans-serif;
    color: #94a3b8;
    border: 1px solid #1e293b;
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.csd-eefdaf92-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    flex-wrap: wrap;
    gap: 10px;
}

.csd-eefdaf92-header h3 {
    margin: 0;
    color: #f8fafc;
    font-size: 1.25rem;
    font-weight: 600;
}

.csd-eefdaf92-total {
    color: #38bdf8;
    font-size: 1.25rem;
    font-weight: 700;
}

.csd-eefdaf92-subtitle {
    font-size: 0.875rem;
    margin-bottom: 40px;
}

.csd-eefdaf92-bar-wrapper {
    display: flex;
    height: 12px;
    border-radius: 6px;
    overflow: hidden;
    gap: 4px;
    margin-bottom: 12px;
}

.csd-eefdaf92-segment {
    height: 100%;
    border-radius: 6px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.csd-eefdaf92-timeline-labels {
    display: flex;
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 24px;
    position: relative;
}

.csd-eefdaf92-timeline-labels > span {
    position: absolute;
    transform: translateX(-50%);
    white-space: nowrap;
}
.csd-eefdaf92-timeline-labels > span:first-child {
    position: static;
    transform: none;
}

.csd-eefdaf92-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 40px;
    margin-top: 40px;
}

.csd-eefdaf92-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    opacity: 0;
    transform: translateY(10px);
    animation: slideUp 0.5s ease-out forwards;
}

@keyframes slideUp {
    to { opacity: 1; transform: translateY(0); }
}

.csd-eefdaf92-legend-item:nth-child(1) { animation-delay: 0.2s; }
.csd-eefdaf92-legend-item:nth-child(2) { animation-delay: 0.3s; }
.csd-eefdaf92-legend-item:nth-child(3) { animation-delay: 0.4s; }
.csd-eefdaf92-legend-item:nth-child(4) { animation-delay: 0.5s; }

.csd-eefdaf92-dot {
    width: 10px;
    height: 10px;
    border-radius: 2px;
}

.csd-eefdaf92-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    border-top: 1px solid #1e293b;
    padding-top: 30px;
}

.csd-eefdaf92-stat-item {
    opacity: 0;
    transform: translateY(10px);
    animation: slideUp 0.5s ease-out forwards;
}

.csd-eefdaf92-stat-item:nth-child(1) { animation-delay: 0.6s; }
.csd-eefdaf92-stat-item:nth-child(2) { animation-delay: 0.7s; }
.csd-eefdaf92-stat-item:nth-child(3) { animation-delay: 0.8s; }
.csd-eefdaf92-stat-item:nth-child(4) { animation-delay: 0.9s; }

.csd-eefdaf92-stat-value {
    color: #f8fafc;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.csd-eefdaf92-stat-label {
    font-size: 0.875rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .csd-eefdaf92-wrapper {
        padding: 20px;
    }
    
    .csd-eefdaf92-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 16px;
    }
    
    .csd-eefdaf92-legend {
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .csd-eefdaf92-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .csd-eefdaf92-timeline-labels {
        font-size: 0.65rem;
    }
}