div.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    margin: 24px 10px;
}
div.stats {
    background: #181818;
    border: 1px solid #353535;
    border-radius: 14px;
    padding: 12px 18px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 5px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
div.stats:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}
div.stats a:hover {
    text-decoration: underline;
}

div.stats .title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #e79741;
    margin-bottom: 6px;
}

table.ranking {
    width: 80%;
    margin: 0 auto;
    border-collapse:collapse;
}
table.ranking th {
    padding: 8px;
    background-color: #2e2e2e;
}
table.ranking td {
    padding: 5px;
    border-bottom: 1px solid #2e2e2e
}
tr.combo {
    font-style: italic;
}

span.comment {
    display: block;
    font-style: italic;
    padding-bottom: 5px;
}

summary {
  cursor: pointer;
  padding-bottom: 15px;
}