@font-face {
    font-family: 'Manrope';
    src: url(Manrope-VariableFont_wght.ttf);
}
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Manrope', sans-serif;
            background: linear-gradient(135deg, #5F968E 0%, #BFDCCF 100%);
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .container {
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            padding: 40px;
            max-width: 500px;
            width: 100%;
        }

        h1 {
            color: #333;
            margin-bottom: 30px;
            text-align: center;
        }

        .setup-section {
            background: #f8f9fa;
            padding: 25px;
            border-radius: 15px;
            margin-bottom: 30px;
        }

        .setup-section h2 {
            font-size: 16px;
            color: #555;
            margin-bottom: 15px;
        }

        .setup-group {
            margin-bottom: 20px;
        }

        .setup-group label {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            cursor: pointer;
        }

        .setup-group input[type="radio"] {
            margin-right: 10px;
            cursor: pointer;
            accent-color: #5F968E;
        }

        .setup-group input[type="number"] {
            padding: 8px 12px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
            margin-left: 10px;
            width: 80px;
        }

        .range-inputs {
            display: flex;
            gap: 10px;
            align-items: center;
            margin-left: 30px;
        }

        .range-inputs input {
            padding: 8px 12px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
            width: 80px;
        }

        button.setup-btn {
            width: 100%;
            padding: 12px;
            background: #5F968E;
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }

        button.setup-btn:hover {
            background: #E05858;
        }

        .tracker-section {
            display: none;
        }

        .tracker-section.active {
            display: block;
        }

        .goal-display {
            text-align: center;
            margin-bottom: 30px;
        }

        .goal-display p {
            color: #666;
            font-size: 14px;
            margin-bottom: 5px;
        }

        .count-display {
            font-size: 48px;
            font-weight: bold;
            color: #5F968E;
            margin: 10px 0;
        }

        .goal-text {
            color: #999;
            font-size: 16px;
        }

        .progress-bar {
            background: #e0e0e0;
            height: 50px;
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 20px;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #5F968E 0%, #BFDCCF 100%);
            transition: width 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 14px;
        }

        .button-group {
            display: flex;
            gap: 10px;
        }

        button.increment-btn {
            height: 7rem;
            width: 7rem;
            padding: 15px;
            margin: 0 auto;
            background-image: url(button.svg);
            color: white;
            border: none;
            border-radius: 50%;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.1s;
        }

        button.increment-btn:hover {
            transform: scale(1.05);
        }

        button.increment-btn:active {
            transform: scale(0.95);
        }

        button.reset-btn {
            padding: 15px 20px;
            background: #E05858;
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            cursor: pointer;
            transition: background 0.3s;
        }

        button.reset-btn:hover {
            background: #ff5252;
        }

        .confetti {
            position: fixed;
            width: 10px;
            height: 10px;
            background: #E05858;
            animation: fall 3s forwards;
            pointer-events: none;
        }

        @keyframes fall {
            to {
                transform: translateY(100vh) rotateZ(360deg);
                opacity: 0;
            }
        }

        .celebration {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 60px;
            animation: celebrate 0.6s ease-out;
            pointer-events: none;
        }

        @keyframes celebrate {
            0% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 1;
            }
            100% {
                transform: translate(-50%, -150%) scale(0);
                opacity: 0;
            }
        }

        .setup-reset {
            margin-top: 15px;
        }

        button.setup-reset {
            width: 100%;
            padding: 10px;
            background: #999;
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 14px;
            transition: background 0.3s;
        }

        button.setup-reset:hover {
            background: #777;
        }