* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    background: #fff8ef;
    color: #4a2c00;
    text-align: center;
    padding-bottom: 120px;
}

header {
    padding: 20px;
}

header h1 {
    font-size: 1.6rem;
}

header p {
    margin-top: 5px;
    font-size: 0.95rem;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
}

.stats div {
    background: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.stats span {
    font-size: 1.8rem;
    font-weight: bold;
    display: block;
}

.stats small {
    font-size: 0.8rem;
}

#resetBtn {
    margin-top: 10px;
    padding: 10px 18px;
    border: none;
    border-radius: 8px;
    background: #d9534f;
    color: #fff;
    font-size: 0.9rem;
}

#jaapBtn {
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: none;
    background: #ff9800;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
    touch-action: none;
}

footer {
    margin-top: 30px;
    padding: 15px;
    font-size: 0.8rem;
    color: #555;
}
