body {
    margin: 0;
    padding: 0;
    font-family: 'Comic Sans MS', 'Segoe UI', cursive;
    background: linear-gradient(135deg, #ffd6e0, #e0c3fc);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Card */
.container {
    background: #fff0f5;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    text-align: center;
    width: 280px;
}

/* Heading */
h1 {
    color: #ff6f91;
    margin-bottom: 10px;
}

/* Counter */
#count {
    font-size: 65px;
    margin: 20px 0;
    color: #845ec2;
    font-weight: bold;
}

/* Buttons */
.buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

/* Button style */
button {
    padding: 10px 18px;
    font-size: 18px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: 0.3s;
    color: white;
}

/* Individual colors */
button:nth-child(1) {
    background: #ff8fab; /* Decrease */
}

button:nth-child(2) {
    background: #cdb4db; /* Reset */
}

button:nth-child(3) {
    background: #80ed99; /* Increase */
}

/* Hover cute effect */
button:hover {
    transform: scale(1.08);
    box-shadow: 0 5px 12px rgba(0,0,0,0.2);
}