body {
    margin: 0;
    background: #0f1115;
    color: white;
    font-family: Arial, sans-serif;
}

.container {
    padding: 20px;
}

.title {
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 300;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
}

.card {
    background: #1a1d24;
    border-radius: 24px;
    padding: 25px;
    box-shadow: 0 0 25px rgba(0,0,0,0.3);
}

.label {
    color: #999;
    font-size: 15px;
    margin-bottom: 10px;
}

.value {
    font-size: 42px;
    font-weight: bold;
}