/* Overwatch Custom Stats Section */
.ow-stats-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 20px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-family: 'Plus Jakarta Sans', Arial, sans-serif;
}

.ow-stat-item {
    flex: 1 1 150px;
    min-width: 150px;
}

.ow-stat-number {
    font-size: 32px !important;
    font-weight: 800 !important;
    color: #d1b06b !important;
    margin: 0 0 8px 0 !important;
    line-height: 1.1 !important;
}

.ow-stat-label {
    font-size: 13px !important;
    color: #c5d0e0 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    font-weight: 600 !important;
    margin: 0 !important;
    line-height: 1.4 !important;
}

/* Make it stack cleanly on mobile phones */
@media (max-width: 768px) {
    .ow-stats-container {
        flex-direction: column;
        text-align: center;
        border-top: none;
    }
}
