* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            user-select: none;
        }

        body {
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            background: linear-gradient(135deg, #66777a 0%, #3b4b4e 100%);
            font-family: 'Segoe UI', system-ui, sans-serif;
        }

        .game-container {
            background: #8b6e4b;
            padding: 20px;
            border-radius: 24px;
            box-shadow: 0 20px 30px rgba(0,0,0,0.3);
        }

        #gardenCanvas {
            display: block;
            width: 800px;
            height: 600px;
            border-radius: 12px;
            box-shadow: inset 0 0 20px rgba(0,0,0,0.3);
            cursor: none;
        }

        .ui-panel {
            margin-top: 20px;
            padding: 15px 20px;
            background: #d3c5b0;
            border-radius: 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #2d3e42;
            font-weight: bold;
            box-shadow: 0 5px 0 #8b7a63;
        }

        .score {
            font-size: 24px;
            background: #2d3e42;
            color: #e8d9c5;
            padding: 8px 24px;
            border-radius: 30px;
            letter-spacing: 2px;
            text-align: center;
            line-height: 1.4;
        }

        .unlocks {
            display: flex;
            gap: 15px;
        }

        .unlock-item {
            padding: 8px 16px;
            background: #e8d9c5;
            border-radius: 30px;
            opacity: 0.3;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .unlock-item.unlocked {
            opacity: 1;
            box-shadow: 0 0 15px #ffd700;
            transform: scale(1.05);
        }

        .reset-button {
            padding: 8px 20px;
            background: #e8d9c5;
            border: none;
            border-radius: 30px;
            color: #2d3e42;
            font-weight: bold;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 3px 0 #8b7a63;
        }

        .reset-button:hover {
            background: #f5e9d9;
            transform: translateY(-2px);
            box-shadow: 0 5px 0 #8b7a63;
        }

        .reset-button:active {
            transform: translateY(3px);
            box-shadow: 0 0 0 #8b7a63;
        }