* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: #f0f0f0;
    font-family: Arial, sans-serif;
}

.wrapper {
    text-align: center;
}

.circular-progress {
    position: relative;
    width: 150px;
    height: 150px;
    background: conic-gradient(#a411ff 0deg, #ccc 0deg);
    border-radius: 50%;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle {
    width: 82%;
    height: 82%;
    background: #e8e8e8;
    position: absolute;
    border-radius: 50%;
}

.circular-progress .number {
    position: absolute;
    font-size: 24px;
    font-weight: bold;
    z-index: 99;
}

button {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
    background: #a411ff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background: #8d01e4;
}

.controls {
    display: flex;
    justify-content: center;
    gap: 10px;
}