.stats-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #0F172A 0%, #1F2937 50%, #0F172A 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: rotate 20s linear infinite;
    z-index: 0;
}

.stats-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: rotate 30s linear infinite reverse;
    z-index: 0;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.section-title {
    font-family: 'Press Start 2P', cursive;
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    color: var(--white);
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 0.05em;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.8),
        0 0 40px rgba(139, 92, 246, 0.4);
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(167, 139, 250, 0.05));
    border: 3px solid var(--primary);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    animation: slideIn 0.6s ease-out;
    animation-fill-mode: both;
    position: relative;
    overflow: hidden;
}

.stat-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%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.stat-card:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-card:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-card:nth-child(3) {
    animation-delay: 0.3s;
}

.stat-card:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.stat-card:hover {
    border-color: var(--primary-light);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.6),
        inset 0 0 20px rgba(139, 92, 246, 0.1);
    transform: translateY(-8px);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(167, 139, 250, 0.1));
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.5));
    animation: bobbing 2s ease-in-out infinite;
}

@keyframes bobbing {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.stat-name {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: var(--white);
    margin: 0;
    font-weight: 600;
    line-height: 1.3;
}

.progress-bar {
    width: 100%;
    height: 24px;
    background: #1F2937;
    border: 2px solid var(--disabled);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.8rem;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.progress-fill {
    height: 100%;
    width: var(--progress);
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 2px;
    animation: fillProgress 2s ease-out forwards;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.8),
        inset 0 0 10px rgba(255, 255, 255, 0.2);
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes fillProgress {
    from {
        width: 0;
    }

    to {
        width: var(--progress);
    }
}

.progress-text {
    font-family: 'Press Start 2P', cursive;
    font-size: 0.75rem;
    color: var(--primary-light);
    display: block;
    text-align: right;
    letter-spacing: 0.05em;
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.stats-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.highlight-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(167, 139, 250, 0.08));
    border: 3px dashed var(--primary);
    padding: 2.5rem 2rem;
    text-align: center;
    border-radius: 12px;
    transition: all 0.3s ease;
    animation: popIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
    position: relative;
    overflow: hidden;
}

.highlight-card:first-child {
    animation-delay: 0s;
}

.highlight-card:nth-child(2) {
    animation-delay: 0.2s;
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.highlight-card:hover {
    border-color: var(--primary-light);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(167, 139, 250, 0.12));
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.5),
        inset 0 0 20px rgba(139, 92, 246, 0.1);
    transform: translateY(-10px) scale(1.02);
}

.highlight-card:hover::before {
    opacity: 1;
}

.highlight-number {
    font-family: 'Press Start 2P', cursive;
    font-size: 2.5rem;
    color: var(--primary-light);
    display: block;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.8);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.highlight-rating {
    font-size: 2rem;
    margin: 0 0.5rem;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.highlight-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
    font-weight: 600;
}

.about-text {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(167, 139, 250, 0.04));
    border-left: 4px solid var(--primary);
    padding: 2rem;
    border-radius: 8px;
    animation: slideUp 0.6s ease-out 0.5s backwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.about-text p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .stats-section {
        padding: 4rem 1.5rem;
    }

    .stats-grid {
        gap: 1.5rem;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .stat-card {
        padding: 1.5rem;
    }

    .stat-icon {
        font-size: 2rem;
    }

    .stat-name {
        font-size: 1rem;
    }

    .progress-bar {
        height: 20px;
    }

    .progress-text {
        font-size: 0.65rem;
    }

    .stats-highlights {
        grid-template-columns: 1fr;
    }

    .highlight-number {
        font-size: 2rem;
    }

    .about-text {
        padding: 1.5rem;
    }

    .about-text p {
        font-size: 0.95rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .stats-section {
        padding: 3rem 1rem;
    }

    .section-title {
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }

    .stats-grid {
        gap: 1rem;
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 1.2rem;
    }

    .stat-icon {
        font-size: 1.8rem;
    }

    .stat-name {
        font-size: 0.95rem;
    }

    .progress-bar {
        height: 18px;
    }

    .highlight-number {
        font-size: 1.8rem;
    }

    .about-text p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}