.statistics__box {
    background-color: #444444; 
    color: white;
    width: 300px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.statistics__box h2 {
    font-size: 24px;
    color: #FF5733;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.statistics__container {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 16px;
}

.statistics__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.statistics__value {
    font-size: 24px;
    font-weight: bold;
}

#cross_wins, #circle_wins {
    color: #FF5733;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

@media(max-width: 400px) {
    .statistics__box {
        width: 240px;
    }
}

