/* Modern Results Section */
.modern-results-container {
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 25px;
    padding: 3rem 2rem;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(0, 212, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.modern-results-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    animation: gradient-flow 3s ease-in-out infinite;
}

@keyframes gradient-flow {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.results-header {
    text-align: center;
    margin-bottom: 3rem;
}

.results-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.4);
    animation: pulse-results 2s ease-in-out infinite;
}

@keyframes pulse-results {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 15px 35px rgba(0, 212, 255, 0.4);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 20px 45px rgba(0, 212, 255, 0.6);
    }
}

.results-icon i {
    font-size: 2rem;
    color: white;
}

.results-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.result-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.result-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
}

.result-card:hover::before {
    left: 100%;
}

.result-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.result-card:hover .result-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.5);
}

.result-icon i {
    font-size: 1.5rem;
    color: white;
}

.result-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    line-height: 1;
}

.result-label {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Specific colors for different result types */
.result-card:nth-child(1) .result-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.result-card:nth-child(2) .result-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.result-card:nth-child(3) .result-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.result-card:nth-child(4) .result-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

/* Responsive */
@media (max-width: 1200px) {
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .modern-results-container {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .results-title {
        font-size: 1.5rem;
    }
    
    .result-number {
        font-size: 2rem;
    }
    
    .result-card {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .results-grid {
        grid-template-columns: 1fr;
    }
}