.stats_section {
    width: 100%;
    display: flex;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background-color: var(--background_panel);
}

.stats_inner {
    width: 90%;
    max-width: 1400px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
    padding: 2.5rem 1rem;
}

.stat_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    position: relative;
}

.stat_value {
    font-family: var(--header_font);
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--text_primary);
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat_item:hover .stat_value {
    color: var(--accent);
    transition: color 0.2s ease;
}

.stat_label {
    font-family: var(--text_font);
    font-size: 0.75rem;
    color: var(--text_secondary);
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .stats_inner {
        width: 85%;
        gap: 2.5rem;
        padding: 3rem 1.5rem;
    }

    .stat_value {
        font-size: 2.3rem;
    }

    .stat_label {
        font-size: 0.8rem;
    }
}

@media (min-width: 1024px) {
    .stats_inner {
        width: 60%;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        padding: 3.5rem 2rem;
    }

    .stat_value {
        font-size: 2.75rem;
    }

    .stat_label {
        font-size: 0.85rem;
    }

    .stat_item:not(:last-child)::after {
        content: '';
        position: absolute;
        right: -1rem;
        top: 20%;
        height: 60%;
        width: 1px;
        background-color: rgba(255, 255, 255, 0.08);
    }
}