/* ========================================
   UPDATED IMPACT COUNTER STYLES
   Pre-Launch State with 10 Billion Goal
   ======================================== */

/* Pre-Launch Notice */
.pre-launch-notice {
    background: linear-gradient(135deg, rgba(241, 196, 15, 0.15), rgba(230, 126, 34, 0.15));
    border: 2px solid rgba(241, 196, 15, 0.4);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 50px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.pre-launch-notice .notice-icon {
    font-size: 50px;
    flex-shrink: 0;
    animation: pulse-notice 2s ease-in-out infinite;
}

@keyframes pulse-notice {
    0%, 100% { 
        transform: scale(1); 
        opacity: 1; 
    }
    50% { 
        transform: scale(1.1); 
        opacity: 0.8; 
    }
}

.pre-launch-notice .notice-text h4 {
    color: #f1c40f;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.pre-launch-notice .notice-text p {
    color: #b8c5c5;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

/* Inactive Impact Cards */
.impact-card.inactive {
    background: linear-gradient(135deg, rgba(127, 140, 141, 0.1), rgba(95, 106, 106, 0.1));
    border: 2px solid rgba(127, 140, 141, 0.3);
    opacity: 0.7;
    position: relative;
}

.impact-card.inactive .impact-number {
    color: #7f8c8d;
    text-shadow: none;
}

.impact-card.inactive:hover {
    box-shadow: 0 15px 40px rgba(127, 140, 141, 0.3);
    opacity: 0.8;
}

.impact-status {
    color: #f1c40f;
    font-size: 12px;
    font-weight: 600;
    margin-top: 10px;
    padding: 5px 10px;
    background: rgba(241, 196, 15, 0.1);
    border-radius: 10px;
    display: inline-block;
}

/* Progress Bar Updates */
.progress-subtext {
    color: #b8c5c5;
    font-size: 14px;
    font-style: italic;
    text-align: center;
    margin-top: 10px;
    font-weight: 600;
}

/* Section Description Updates */
.impact-counter-section .section-description strong {
    color: #f1c40f;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .pre-launch-notice {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .pre-launch-notice .notice-icon {
        font-size: 40px;
    }
    
    .pre-launch-notice .notice-text h4 {
        font-size: 18px;
    }
    
    .impact-status {
        font-size: 11px;
        padding: 4px 8px;
    }
}
