* {
    padding: 0;
    margin: 0;
    font-family: sans-serif;
}

html, body {
    width: 100%;
    height: 100%;
}

h2 {
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 1px;
}

.container {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    box-sizing: border-box;
    padding: 10px;
    row-gap: 10px;
}

.button-container {
    display: flex;
    flex-wrap: wrap;
    column-gap: 10px;
    margin-bottom: 10px;
}

.button-container button {
    padding: 8px 12px;
    font-weight: bold;
    border: none;
    background: #eee;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.2s;
}

.button-container button.active {
    background-color: #007BFF;
    color: white;
    cursor: default;
}

.stats-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 900px;
    gap: 10px;
}

.stat-box {
    background: #f0f0f0;
    padding: 10px 20px;
    border-radius: 8px;
    min-width: 120px;
    box-shadow: 0 0 5px rgba(0,0,0,0.05);
    text-align: center;
    font-size: 12px;
}

.stat-box span{
    font-size: 22px;
    font-weight: bold;
    display: block;
    margin-top: 2px;
}
