/* General styles (unchanged) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
}

.container {
    text-align: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Enhanced Button Styles */
button {
    padding: 12px 25px;
    margin: 15px 0;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    border-radius: 50px;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

/* Click Button Style with Gradient */
#clickBtn {
    background: linear-gradient(135deg, #4CAF50, #2E8B57);
    color: white;
}

#clickBtn:hover {
    background: linear-gradient(135deg, #66BB6A, #3CB371);
    transform: translateY(-3px);
}

#clickBtn:active {
    transform: scale(0.95);
}

/* Start Button Style with Gradient */
#startBtn {
    background: linear-gradient(135deg, #2196F3, #1E88E5);
    color: white;
}

#startBtn:hover {
    background: linear-gradient(135deg, #42A5F5, #3498DB);
    transform: translateY(-3px);
}

#startBtn:active {
    transform: scale(0.95);
}

/* Disabled button style */
#clickBtn:disabled {
    background: linear-gradient(135deg, #bbb, #aaa);
    cursor: not-allowed;
}

/* Other unchanged styles */
#score, #timer {
    font-size: 18px;
    margin-top: 10px;
}