/* ========================================
   STP GLOBAL IMPACT SECTION STYLES
   ======================================== */

.global-impact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a1f1f 0%, #0d2626 50%, #0a1f1f 100%);
    position: relative;
    overflow: hidden;
}

.global-impact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(46, 204, 113, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(52, 152, 219, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Launch Dates Banner */
.launch-dates-banner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.launch-date-card {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.15), rgba(46, 204, 113, 0.15));
    border: 3px solid;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    gap: 25px;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.launch-date-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(0.95); opacity: 0.5; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

.launch-date-card.roblox {
    border-color: #e67e22;
}

.launch-date-card.roblox:hover {
    border-color: #f39c12;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(230, 126, 34, 0.4);
}

.launch-date-card.official {
    border-color: #2ecc71;
}

.launch-date-card.official:hover {
    border-color: #27ae60;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(46, 204, 113, 0.4);
}

.date-icon {
    font-size: 60px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

.date-content h3 {
    color: #f1c40f;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.date-value {
    color: #ffffff;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.date-content p {
    color: #b8c5c5;
    font-size: 15px;
    margin: 0;
}

/* Impact Notice */
.impact-notice {
    background: linear-gradient(135deg, rgba(241, 196, 15, 0.1), rgba(230, 126, 34, 0.1));
    border: 2px solid rgba(241, 196, 15, 0.3);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 60px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.notice-icon {
    font-size: 40px;
    flex-shrink: 0;
}

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

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

.notice-content strong {
    color: #f1c40f;
    font-weight: 700;
}

/* Global Goals Grid */
.global-goals-section {
    margin-bottom: 60px;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.goal-card {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.05), rgba(52, 152, 219, 0.05));
    border: 2px solid rgba(46, 204, 113, 0.2);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.goal-card:hover {
    border-color: #2ecc71;
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(46, 204, 113, 0.3);
}

.goal-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.goal-number {
    color: #f1c40f;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(241, 196, 15, 0.3);
}

.goal-label {
    color: #2ecc71;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.goal-description {
    color: #b8c5c5;
    font-size: 14px;
    line-height: 1.5;
}

/* Ecosystem Growth */
.ecosystem-growth {
    margin-bottom: 60px;
}

.growth-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 30px;
}

.growth-card {
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.1), rgba(241, 196, 15, 0.1));
    border: 2px solid rgba(230, 126, 34, 0.3);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.growth-card:hover {
    border-color: #e67e22;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.3);
}

.growth-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.growth-card h4 {
    color: #e67e22;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.growth-card p {
    color: #b8c5c5;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.interconnected-note {
    background: rgba(52, 152, 219, 0.1);
    border: 2px solid rgba(52, 152, 219, 0.3);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.interconnected-note i {
    color: #3498db;
    font-size: 24px;
}

.interconnected-note p {
    color: #b8c5c5;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

/* 50% Profit Mission */
.profit-mission {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.15), rgba(39, 174, 96, 0.15));
    border: 3px solid #2ecc71;
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    margin-bottom: 60px;
}

.mission-icon-large {
    font-size: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 30px rgba(46, 204, 113, 0.5));
}

.profit-mission h3 {
    color: #2ecc71;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(46, 204, 113, 0.3);
}

.profit-mission p {
    color: #b8c5c5;
    font-size: 18px;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

/* Movement Banner */
.movement-banner {
    background: linear-gradient(135deg, rgba(241, 196, 15, 0.1), rgba(230, 126, 34, 0.1));
    border: 3px solid #f1c40f;
    border-radius: 20px;
    padding: 50px;
    text-align: center;
}

.movement-banner h2 {
    color: #f1c40f;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(241, 196, 15, 0.5);
}

.movement-banner p {
    color: #b8c5c5;
    font-size: 20px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 30px;
}

.movement-banner strong {
    color: #f1c40f;
    font-weight: 800;
}

.banner-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .launch-dates-banner {
        grid-template-columns: 1fr;
    }
    
    .launch-date-card {
        flex-direction: column;
        text-align: center;
    }
    
    .date-value {
        font-size: 24px;
    }
    
    .goals-grid {
        grid-template-columns: 1fr;
    }
    
    .growth-grid {
        grid-template-columns: 1fr;
    }
    
    .profit-mission,
    .movement-banner {
        padding: 30px 20px;
    }
    
    .movement-banner h2 {
        font-size: 28px;
    }
    
    .movement-banner p {
        font-size: 16px;
    }
    
    .banner-buttons {
        flex-direction: column;
        align-items: center;
    }
}
